| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| 1 | <?php |
||
| 34 | public function __construct(array $steps = []) |
||
| 35 | { |
||
| 36 | foreach ($steps as $step) { |
||
| 37 | if (!$step instanceof StepInterface) { |
||
| 38 | $errMsg = 'Некорректная коллекция из шагов workflow'; |
||
| 39 | throw new InternalWorkflowException($errMsg); |
||
| 40 | } |
||
| 41 | } |
||
| 42 | |||
| 43 | $this->dummy = new DummyStep(); |
||
| 44 | $this->steps = $steps; |
||
| 45 | } |
||
| 46 | |||
| 63 |