| Total Complexity | 6 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class LoophpCollectionFactory implements CollectionFactoryInterface |
||
| 15 | { |
||
| 16 | /** @var class-string<TCollection> */ |
||
|
|
|||
| 17 | private string $class = Collection::class; |
||
| 18 | |||
| 19 | public function __construct() |
||
| 20 | { |
||
| 21 | if (!\class_exists(Collection::class, true)) { |
||
| 22 | throw new CollectionFactoryException( |
||
| 23 | \sprintf( |
||
| 24 | 'There is no %s class. To resolve this issue you can install `loophp/collection` package.', |
||
| 25 | Collection::class |
||
| 26 | ) |
||
| 27 | ); |
||
| 28 | } |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getInterface(): string |
||
| 32 | { |
||
| 33 | return Collection::class; |
||
| 34 | } |
||
| 35 | |||
| 36 | public function withCollectionClass(string $class): static |
||
| 45 | } |
||
| 46 | |||
| 47 | public function collect(iterable $data): Collection |
||
| 52 |