| 1 | <?php |
||
| 24 | class YawikConfigCreatorFactory implements FactoryInterface |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * Create a YawikConfigCreator controller plugin |
||
| 28 | * |
||
| 29 | * @param ContainerInterface $container |
||
| 30 | * @param string $requestedName |
||
| 31 | * @param null|array $options |
||
| 32 | * |
||
| 33 | * @return YawikConfigCreator |
||
| 34 | */ |
||
| 35 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Creates a YawikConfigCreator plugin instance. |
||
| 47 | * |
||
| 48 | * @param ServiceLocatorInterface|\Zend\Mvc\Controller\PluginManager $serviceLocator |
||
| 49 | * |
||
| 50 | * @return YawikConfigCreator |
||
| 51 | */ |
||
| 52 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
| 57 | } |
||
| 58 |