15 lines
297 B
PHP
15 lines
297 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\Tests\Models\OneToOneSingleTableInheritance;
|
||
|
|
||
|
/**
|
||
|
* @Entity
|
||
|
* @Table(name="one_to_one_single_table_inheritance_litter_box")
|
||
|
*/
|
||
|
class LitterBox
|
||
|
{
|
||
|
const CLASSNAME = __CLASS__;
|
||
|
|
||
|
/** @Id @Column(type="integer") @GeneratedValue(strategy="AUTO") */
|
||
|
public $id;
|
||
|
}
|