| Total Complexity | 1 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class CompletedStep |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var Step |
||
| 11 | */ |
||
| 12 | public $step; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var mixed |
||
| 16 | */ |
||
| 17 | public $state; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | public $stepId; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param Step $step |
||
| 26 | * @param mixed $state the state after running the state above |
||
| 27 | * @param string $stepId |
||
| 28 | */ |
||
| 29 | public function __construct(Step $step, $state, $stepId) |
||
| 36 |