1
0
mirror of synced 2025-01-19 06:51:40 +03:00

#1272 DDC-2704 - test assets for the property getter utility tests

This commit is contained in:
Marco Pivetta 2015-01-24 14:30:07 +01:00
parent 1aa453d493
commit 05a8e1c77d
2 changed files with 28 additions and 0 deletions

View File

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

View File

@ -0,0 +1,10 @@
<?php
namespace Doctrine\Tests\Models\Reflection;
class ParentClass
{
const CLASSNAME = __CLASS__;
private $privatePropertyOverride = 'privatePropertyOverride';
}