Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 7 |
Lines | 15 |
Ratio | 100 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
82 | View Code Duplication | public function progress(int $current = 0):IProgressBar |
|
83 | { |
||
84 | if ($this->isDisabled()) { |
||
85 | return $this; |
||
86 | } |
||
87 | |||
88 | if ($current) { |
||
89 | $this->progressBar->progress($current); |
||
90 | |||
91 | return $this; |
||
92 | } |
||
93 | |||
94 | $this->progressBar->progress(); |
||
95 | |||
96 | return $this; |
||
97 | } |
||
114 |