| 1 | <?php |
||
| 7 | class ObjectForTesting extends \stdClass |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Simple Item |
||
| 11 | * @var integer |
||
| 12 | */ |
||
| 13 | public $item = 1; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Array item |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | public $arrItem = ['a', 'b' => 'c']; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Simple method |
||
| 23 | * |
||
| 24 | * @return boolean |
||
| 25 | */ |
||
| 26 | public function method() |
||
| 30 | |||
| 31 | } |
||
| 32 |