1
0
mirror of synced 2025-03-21 07:23:55 +03:00

Adding a test asset to play around with reflection and internal classes

This commit is contained in:
Marco Pivetta 2014-12-05 12:41:22 +01:00
parent fc3f233923
commit 56cb47c585

View File

@ -0,0 +1,15 @@
<?php
namespace Doctrine\Tests\Models\StockExchange;
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;
}