Adding a test asset to play around with reflection and internal classes
This commit is contained in:
parent
fc3f233923
commit
56cb47c585
1 changed files with 15 additions and 0 deletions
|
@ -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;
|
||||
}
|
Loading…
Add table
Reference in a new issue