#1272 DDC-2704 - test assets for the property getter utility tests
This commit is contained in:
parent
1aa453d493
commit
05a8e1c77d
@ -0,0 +1,18 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Doctrine\Tests\Models\Reflection;
|
||||||
|
|
||||||
|
class ClassWithMixedProperties extends ParentClass
|
||||||
|
{
|
||||||
|
const CLASSNAME = __CLASS__;
|
||||||
|
|
||||||
|
public static $staticProperty = 'staticProperty';
|
||||||
|
|
||||||
|
public $publicProperty = 'publicProperty';
|
||||||
|
|
||||||
|
protected $protectedProperty = 'protectedProperty';
|
||||||
|
|
||||||
|
private $privateProperty = 'privateProperty';
|
||||||
|
|
||||||
|
private $privatePropertyOverride = 'privatePropertyOverride';
|
||||||
|
}
|
10
tests/Doctrine/Tests/Models/Reflection/ParentClass.php
Normal file
10
tests/Doctrine/Tests/Models/Reflection/ParentClass.php
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Doctrine\Tests\Models\Reflection;
|
||||||
|
|
||||||
|
class ParentClass
|
||||||
|
{
|
||||||
|
const CLASSNAME = __CLASS__;
|
||||||
|
|
||||||
|
private $privatePropertyOverride = 'privatePropertyOverride';
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user