2015-04-19 16:43:28 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\DDC3699;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Entity
|
|
|
|
* @Table(name="ddc3699_relation_many")
|
|
|
|
*/
|
|
|
|
class DDC3699RelationMany
|
|
|
|
{
|
2015-07-15 21:46:23 +01:00
|
|
|
/** @Id @Column(type="integer") */
|
|
|
|
public $id;
|
2015-04-19 16:43:28 +03:00
|
|
|
|
2015-07-15 21:46:23 +01:00
|
|
|
/** @ManyToOne(targetEntity="DDC3699Child", inversedBy="relations") */
|
|
|
|
public $child;
|
2015-04-19 16:43:28 +03:00
|
|
|
}
|