17 lines
258 B
PHP
17 lines
258 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\Tests\Models\OneToOneSingleTableInheritance;
|
||
|
|
||
|
/** @Entity */
|
||
|
class Cat extends Pet
|
||
|
{
|
||
|
const CLASSNAME = __CLASS__;
|
||
|
|
||
|
/**
|
||
|
* @OneToOne(targetEntity="LitterBox")
|
||
|
*
|
||
|
* @var LitterBox
|
||
|
*/
|
||
|
public $litterBox;
|
||
|
}
|