1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Tests\Fixtures\Doctrine\SingleTableInheritance;
6
7/**
8 * Abstract base class without Entity annotation
9 */
10abstract class AbstractModel
11{
12}
13