1 | <?php |
||
17 | class JoinNodes |
||
18 | { |
||
19 | /** |
||
20 | * @var StepInterface[] |
||
21 | */ |
||
22 | protected $steps; |
||
23 | |||
24 | /** |
||
25 | * @var DummyStep |
||
26 | */ |
||
27 | protected $dummy; |
||
28 | |||
29 | /** |
||
30 | * @param array $steps |
||
31 | * |
||
32 | * @throws \OldTown\Workflow\Exception\InternalWorkflowException |
||
33 | */ |
||
34 | public function __construct(array $steps = []) |
||
46 | |||
47 | /** |
||
48 | * @param $stepId |
||
49 | * |
||
50 | * @return DummyStep|StepInterface |
||
51 | */ |
||
52 | public function getStep($stepId) |
||
62 | } |
||
63 |