Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 7 |
Lines | 15 |
Ratio | 100 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
76 | View Code Duplication | public function progress(int $current = 0):IProgressBar |
|
77 | { |
||
78 | if ($this->isDisabled()) { |
||
79 | return $this; |
||
80 | } |
||
81 | |||
82 | if ($current) { |
||
83 | $this->progressBar->progress($current); |
||
84 | |||
85 | return $this; |
||
86 | } |
||
87 | |||
88 | $this->progressBar->progress(); |
||
89 | |||
90 | return $this; |
||
91 | } |
||
108 |