| Conditions | 4 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | public function isOverThreshold(InputInterface $input, OutputInterface $output, ResultReporter $report): bool |
||
| 36 | { |
||
| 37 | $maxScore = $report->getMaxScore(); |
||
| 38 | |||
| 39 | if (null === $this->maxScoreThreshold || null === $maxScore || $maxScore <= $this->maxScoreThreshold) { |
||
| 40 | return false; |
||
| 41 | } |
||
| 42 | |||
| 43 | $this->printErrorMessage($input, $output); |
||
| 44 | |||
| 45 | return true; |
||
| 46 | } |
||
| 64 |