| 1 | <?php |
||
| 17 | class ArrayDataSource implements DataSourceInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var object[] |
||
| 21 | */ |
||
| 22 | private $array; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param object[] $array |
||
| 26 | */ |
||
| 27 | 5 | public function __construct(array $array = []) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | 4 | public function getIterator() |
|
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | 2 | public function count() |
|
| 47 | } |
||
| 48 |