86c33d78d0
added tests for single table inheritance
22 lines
349 B
PHP
22 lines
349 B
PHP
<?php
|
|
namespace Doctrine\Tests\Models\CompositeKeyInheritance;
|
|
|
|
/**
|
|
* @Entity
|
|
*/
|
|
class SingleChildClass extends SingleRootClass
|
|
{
|
|
/**
|
|
* @var string
|
|
* @Column(type="string")
|
|
*/
|
|
public $extension = 'ext';
|
|
|
|
/**
|
|
* @var string
|
|
* @Column(type="string")
|
|
* @Id
|
|
*/
|
|
private $additionalId = 'additional';
|
|
}
|