| Total Complexity | 6 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 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) { |
||
| 24 | $this->name = $name; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function check() { |
||
| 29 | } |
||
| 30 | |||
| 31 | public function __toString() { |
||
| 32 | return $this->toString(); |
||
| 33 | } |
||
| 34 | |||
| 35 | public function toString() { |
||
| 39 | } |
||
| 40 | |||
| 41 | protected function isChecked() { |
||
| 43 | } |
||
| 44 | } |