1
0
mirror of synced 2025-03-02 19:03:20 +03:00
2014-12-08 01:17:57 +01:00

12 lines
230 B
PHP

<?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;
}