1 | <?php |
||
10 | trait CollectionableTrait |
||
11 | { |
||
12 | /** |
||
13 | * helper method to use for cast arrays to |
||
14 | * collections of entities. |
||
15 | * |
||
16 | * @param Collection|array $data |
||
17 | * @param string $collectionClass |
||
18 | * |
||
19 | * @return EntityCollection |
||
20 | */ |
||
21 | protected function toCollection($data, $collectionClass) |
||
36 | } |
||
37 |