| Total Complexity | 6 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 93.33% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class AlgorithmManagerFactoryFactory |
||
| 13 | { |
||
| 14 | 18 | public function __invoke(ContainerInterface $container): AlgorithmManagerFactory |
|
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param ContainerInterface $container |
||
| 31 | * @param string[]|Algorithm[] $algorithms |
||
| 32 | * |
||
| 33 | * @return Algorithm[] |
||
| 34 | */ |
||
| 35 | 18 | private function getAlgorithms(ContainerInterface $container, array $algorithms): array |
|
| 52 |