Total Complexity | 7 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class CollectionPreparation implements CollectionPreparationInterface |
||
20 | { |
||
21 | /** |
||
22 | * @param iterable<PreparationProcessorInterface> $preparationProcessor |
||
23 | */ |
||
24 | 6 | public function __construct(private iterable $preparationProcessor) |
|
26 | 6 | } |
|
27 | |||
28 | /** |
||
29 | * {@inheritDoc} |
||
30 | */ |
||
31 | 6 | public function process(ReaderInterface $reader): iterable |
|
47 | } |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * @param array<string, mixed> $classes |
||
52 | * |
||
53 | * @return array<class-string> |
||
54 | */ |
||
55 | 3 | protected function createClassList(array $classes): array |
|
65 |