Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 0 |
1 | <?php |
||
43 | public function isDisabled():bool |
||
44 | { |
||
45 | if (isset($this->disabled)) { |
||
46 | return $this->disabled; |
||
47 | } |
||
48 | |||
49 | $isQuiet = $this->output->isQuiet(); |
||
50 | $noProgress = $this->input->getOption('no-progress'); |
||
51 | $noAnsi = $this->input->getOption('no-ansi'); |
||
52 | |||
53 | $this->disabled = $isQuiet || $noProgress || $noAnsi; |
||
54 | |||
55 | return $this->disabled; |
||
56 | } |
||
108 |