1 | <?php |
||
18 | class Factory |
||
19 | { |
||
20 | /** |
||
21 | * @param Traversable|array $items |
||
22 | * @param string $className |
||
23 | * |
||
24 | * @return Collection |
||
25 | */ |
||
26 | 123 | public static function create($items = [], $className = 'Novactive\Collection\Collection') |
|
35 | |||
36 | /** |
||
37 | * @param $items |
||
38 | * |
||
39 | * @return array |
||
40 | */ |
||
41 | 123 | public static function getArrayForItems($items) |
|
58 | } |
||
59 |