| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | protected function renderFailure(Result $result) |
||
| 32 | { |
||
| 33 | $this->output->writeln(' <error> ' . $result->getUrl() . ' </error> coming from ' . (string) $this->retriever->getComingFrom($result->getUrl())); |
||
| 34 | foreach ($result->getMessages() as $ruleName => $message) { |
||
| 35 | $this->output->writeln(' - ' . $message . " [rule: $ruleName]"); |
||
| 36 | } |
||
| 37 | $this->output->writeln(''); |
||
| 38 | } |
||
| 39 | |||
| 45 |