Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 10 |
Ratio | 100 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
96 | View Code Duplication | public function end():IProgressBar |
|
97 | { |
||
98 | if ($this->isDisabled()) { |
||
99 | return $this; |
||
100 | } |
||
101 | |||
102 | $this->progressBar->progress($this->total); |
||
103 | $this->progressBar->end(); |
||
104 | |||
105 | return $this; |
||
106 | } |
||
108 |