| 1 | <?php |
||
| 13 | abstract class DataArray implements StorageInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Local storage for members |
||
| 17 | * |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | protected $data = []; |
||
| 21 | |||
| 22 | 1 | public function isEmpty() |
|
| 26 | |||
| 27 | 16 | public function toArray() |
|
| 31 | |||
| 32 | 1 | public function clear() |
|
| 36 | |||
| 37 | 15 | public function count() |
|
| 41 | |||
| 42 | 1 | public function getIterator() |
|
| 46 | } |
||
| 47 |