1
0
mirror of synced 2025-01-19 23:11:41 +03:00

17 lines
258 B
PHP
Raw Normal View History

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