1 | <?php |
||
18 | final class WorkflowFactory |
||
19 | { |
||
20 | private function __construct() { } |
||
21 | |||
22 | /** |
||
23 | * Builds default workflow. |
||
24 | * |
||
25 | * @param EventDispatcherInterface $eventDispatcher |
||
26 | * @param LoggerInterface $logger |
||
27 | * @return Workflow |
||
28 | */ |
||
29 | 6 | public static function build(EventDispatcherInterface $eventDispatcher, LoggerInterface $logger) |
|
40 | } |
||
41 |