Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class Step { |
||
13 | /** |
||
14 | * @var string name of the step that would be used in error output. |
||
15 | */ |
||
16 | private $name; |
||
17 | /** |
||
18 | * @var bool identifies whether step successfully passed or not. |
||
19 | * Based on this value output of the step would contain checked or not checked sigh. |
||
20 | */ |
||
21 | private $checked = false; |
||
22 | |||
23 | public function __construct($name) { |
||
25 | } |
||
26 | |||
27 | public function check() { |
||
28 | $this->checked = true; |
||
29 | } |
||
30 | |||
31 | public function __toString() { |
||
32 | return $this->toString(); |
||
33 | } |
||
34 | |||
35 | public function toString() { |
||
38 | } |
||
39 | |||
40 | protected function isChecked() { |
||
42 | } |
||
43 | } |