| 1 | <?php |
||
| 18 | class AspectKernelFactory implements FactoryInterface |
||
| 19 | { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Create service |
||
| 23 | * |
||
| 24 | * This method gains ZF3 compatibility |
||
| 25 | * |
||
| 26 | * @param ContainerInterface $container |
||
| 27 | * @param string $requestedName |
||
| 28 | * @param array $options |
||
| 29 | * |
||
| 30 | * @return mixed |
||
| 31 | */ |
||
| 32 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Create service |
||
| 39 | * |
||
| 40 | * @param ServiceLocatorInterface $serviceLocator |
||
| 41 | * |
||
| 42 | * @return mixed |
||
| 43 | */ |
||
| 44 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
| 51 | } |
||
| 52 |