| 1 | <?php namespace GenericCollections\Internal; |
||
| 12 | abstract class DataArray implements StorageInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Local storage for members |
||
| 16 | * |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $data = []; |
||
| 20 | |||
| 21 | 3 | public function isEmpty() |
|
| 25 | |||
| 26 | 48 | public function toArray() |
|
| 30 | |||
| 31 | 3 | public function clear() |
|
| 35 | |||
| 36 | 45 | public function count() |
|
| 40 | |||
| 41 | 3 | public function getIterator() |
|
| 45 | } |
||
| 46 |