School.php 176 B

123456789101112
  1. <?php
  2. namespace JMS\Serializer\Tests\Fixtures\Doctrine\SingleTableInheritance;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * @ORM\Entity
  6. */
  7. class School extends Organization
  8. {
  9. }