| Total Complexity | 8 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class SimpleFormatter implements FormatterInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Displays a security report as simple plain text. |
||
| 11 | * |
||
| 12 | * @param OutputInterface $output |
||
| 13 | * @param string $lockFilePath The file path to the checked lock file |
||
| 14 | * @param array $vulnerabilities An array of vulnerabilities |
||
| 15 | */ |
||
| 16 | 6 | public function displayResults(OutputInterface $output, $lockFilePath, array $vulnerabilities) |
|
| 63 |