| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | final class UidProcessorFactory extends AbstractFactory |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param ContainerInterface $container |
||
| 20 | * @param string $requestedName |
||
| 21 | * @param array<mixed>|null $options |
||
| 22 | * |
||
| 23 | * @return UidProcessor |
||
| 24 | * |
||
| 25 | * @throws ServiceNotCreatedException |
||
| 26 | */ |
||
| 27 | public function __invoke(ContainerInterface $container, string $requestedName, array $options = null): UidProcessor |
||
| 36 |