| 1 | <?php |
||
| 9 | class CommandBusFactory implements FactoryInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Create service |
||
| 13 | * |
||
| 14 | * @param ContainerInterface $container |
||
| 15 | * @param string $requestedName |
||
| 16 | * @param array $options |
||
| 17 | * @return CommandBus |
||
| 18 | 4 | */ |
|
| 19 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
| 33 | } |
||
| 34 |