13 lines
171 B
PHP
13 lines
171 B
PHP
<?php
|
|
|
|
namespace JMS\Serializer\Tests\Fixtures\Doctrine\SingleTableInheritance;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* @ORM\Entity
|
|
*/
|
|
class Teacher extends Person
|
|
{
|
|
}
|