21 lines
487 B
PHP
21 lines
487 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\DDC3699;
|
|
|
|
/** @Entity @Table(name="ddc3699_child") */
|
|
class DDC3699Child extends DDC3699Parent
|
|
{
|
|
const CLASSNAME = __CLASS__;
|
|
|
|
/** @Id @Column(type="integer") */
|
|
public $id;
|
|
|
|
/** @Column(type="string") */
|
|
public $childField;
|
|
|
|
/** @OneToOne(targetEntity="DDC3699RelationOne", inversedBy="child") */
|
|
public $oneRelation;
|
|
|
|
/** @OneToMany(targetEntity="DDC3699RelationMany", mappedBy="child") */
|
|
public $relations;
|
|
} |