11 lines
171 B
PHP
11 lines
171 B
PHP
|
<?php
|
||
|
|
||
|
namespace JMS\Serializer\Tests\Fixtures\Doctrine\SingleTableInheritance;
|
||
|
|
||
|
/**
|
||
|
* Abstract base class without Entity annotation
|
||
|
*/
|
||
|
abstract class AbstractModel
|
||
|
{
|
||
|
}
|