#1272 DDC-2704 - test assets for the property getter utility tests
This commit is contained in:
parent
1aa453d493
commit
05a8e1c77d
2 changed files with 28 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue