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