1
0
mirror of synced 2025-02-03 22:09:26 +03:00
doctrine2/tests/Doctrine/Tests/Models/Reflection/ClassWithMixedProperties.php

17 lines
384 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\Reflection;
class ClassWithMixedProperties extends ParentClass
{
public static $staticProperty = 'staticProperty';
public $publicProperty = 'publicProperty';
protected $protectedProperty = 'protectedProperty';
private $privateProperty = 'privateProperty';
private $privatePropertyOverride = 'privatePropertyOverride';
}