1 | <?php |
||
22 | class WorkflowServiceFactory implements FactoryInterface, MutableCreationOptionsInterface |
||
23 | { |
||
24 | use MutableCreationOptionsTrait; |
||
25 | |||
26 | /** |
||
27 | * @param ServiceLocatorInterface $serviceLocator |
||
28 | * |
||
29 | * @return Workflow |
||
30 | * |
||
31 | * @throws \Zend\Stdlib\Exception\InvalidArgumentException |
||
32 | * @throws \OldTown\Workflow\ZF2\Service\Exception\InvalidArgumentException |
||
33 | * @throws \OldTown\Workflow\ZF2\ServiceEngine\Exception\InvalidArgumentException |
||
34 | * @throws \Zend\ServiceManager\Exception\ServiceNotFoundException |
||
35 | */ |
||
36 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
49 | } |
||
50 |