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