1
0
mirror of synced 2025-01-31 20:41:44 +03:00
doctrine2/tests/Doctrine/Tests/Models/Reflection/ClassWithMixedProperties.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';
}