2015-04-19 16:43:28 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\DDC3699;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Entity
|
|
|
|
* @Table(name="ddc3699_relation_one")
|
|
|
|
*/
|
|
|
|
class DDC3699RelationOne
|
|
|
|
{
|
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
|
|
|
/** @OneToOne(targetEntity="DDC3699Child", mappedBy="oneRelation") */
|
|
|
|
public $child;
|
2015-04-19 16:43:28 +03:00
|
|
|
}
|