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