1 | <?php |
||
9 | class Collection extends BaseCollection implements CollectionInterface |
||
10 | { |
||
11 | /** |
||
12 | * Create from raw array data. |
||
13 | * |
||
14 | * @param array $items |
||
15 | * @param \Sl\Contracts\MapperInterface $mapper |
||
16 | * |
||
17 | * @return \Sl\Contracts\Collections\CollectionInterface |
||
18 | */ |
||
19 | 11 | public static function fromArray(array $items, MapperInterface $mapper) |
|
23 | } |
||
24 |