1
0
mirror of synced 2025-01-09 02:27:10 +03:00
doctrine2/tests/Doctrine/Tests/Models/Reflection/AbstractEmbeddable.php

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