1
0
mirror of synced 2025-03-13 16:16:09 +03:00

12 lines
230 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\Reflection;
/**
* A test asset used to check that embeddables support properties defined in abstract classes
*/
abstract class AbstractEmbeddable
{
private $propertyInAbstractClass;
}