| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class LazyCollectionLoader extends CollectionLoader |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Process the collection of raw data. |
||
| 12 | * |
||
| 13 | * @param mixed[]|Traversable $results The raw result set. |
||
|
|
|||
| 14 | * @param callable|null $before Process each entity before applying raw data. |
||
| 15 | * @param callable|null $after Process each entity after applying raw data. |
||
| 16 | * @return ModelInterface[]|\Generator |
||
| 17 | */ |
||
| 18 | protected function processCollection($results, callable $before = null, callable $after = null) |
||
| 29 |