#1213 - DDC-3437 - adding relevant test assets
This commit is contained in:
parent
d259ba91b3
commit
d75d6ffb11
2 changed files with 22 additions and 0 deletions
|
@ -0,0 +1,11 @@
|
|||
<?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;
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
namespace Doctrine\Tests\Models\Reflection;
|
||||
|
||||
/**
|
||||
* A test asset used to check that embeddables support properties defined in abstract classes
|
||||
*/
|
||||
class ConcreteEmbeddable extends AbstractEmbeddable
|
||||
{
|
||||
private $propertyInConcreteClass;
|
||||
}
|
Loading…
Add table
Reference in a new issue