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