| 1 | <?php |
||
| 20 | class IndexControllerFactory implements FactoryInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Create a IndexController controller |
||
| 24 | * |
||
| 25 | * @param ContainerInterface $container |
||
| 26 | * @param string $requestedName |
||
| 27 | * @param null|array $options |
||
| 28 | * |
||
| 29 | * @return IndexController |
||
| 30 | */ |
||
| 31 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Create service |
||
| 42 | * |
||
| 43 | * @param ServiceLocatorInterface $serviceLocator |
||
| 44 | * |
||
| 45 | * @return IndexController |
||
| 46 | */ |
||
| 47 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
| 52 | } |
||
| 53 |