19 lines
418 B
PHP
19 lines
418 B
PHP
|
<?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';
|
||
|
}
|