| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class HeadLinkFactory implements FactoryInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Create an object |
||
| 19 | * |
||
| 20 | * @param ContainerInterface $container |
||
| 21 | * @param string $requestedName |
||
| 22 | * @param null|array $options |
||
| 23 | * |
||
| 24 | * @return object |
||
| 25 | * @throws \Exception |
||
| 26 | * @throws \Psr\Container\ContainerExceptionInterface |
||
| 27 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 28 | */ |
||
| 29 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
| 45 |