22 lines
349 B
PHP
22 lines
349 B
PHP
|
<?php
|
||
|
namespace Doctrine\Tests\Models\CompositeKeyInheritance;
|
||
|
|
||
|
/**
|
||
|
* @Entity
|
||
|
*/
|
||
|
class JoinedChildClass extends JoinedRootClass
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
* @Column(type="string")
|
||
|
*/
|
||
|
public $extension = 'ext';
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
* @Column(type="string")
|
||
|
* @Id
|
||
|
*/
|
||
|
private $additionalId = 'additional';
|
||
|
}
|