| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function verbosityMeetsThreshold($verbosityThreshold) |
||
| 24 | { |
||
| 25 | if (!isset($this->verbosityMap[$verbosityThreshold])) { |
||
| 26 | return true; |
||
| 27 | } |
||
| 28 | $verbosityThreshold = $this->verbosityMap[$verbosityThreshold]; |
||
| 29 | $verbosity = $this->output()->getVerbosity(); |
||
| 30 | |||
| 31 | return $verbosity >= $verbosityThreshold; |
||
| 32 | } |
||
| 33 | |||
| 39 |