1
0
mirror of synced 2025-01-10 02:57:10 +03:00
doctrine2/tests/Doctrine/Tests/Models/Reflection/ArrayObjectExtendingClass.php

16 lines
334 B
PHP
Raw Normal View History

<?php
2014-12-05 14:43:12 +03:00
namespace Doctrine\Tests\Models\Reflection;
use ArrayObject;
/**
* A test asset extending {@see \ArrayObject}, useful for verifying internal classes issues with reflection
*/
class ArrayObjectExtendingClass extends ArrayObject
{
private $privateProperty;
protected $protectedProperty;
public $publicProperty;
}