1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-08 14:08:43 +01:00
psalm/src/Psalm/Report/CheckstyleReport.php

43 lines
1.1 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Report;
use LSS\Array2XML;
use Psalm\Report;
use function sprintf;
use function htmlspecialchars;
class CheckstyleReport extends Report
{
/**
* {{@inheritdoc}}
*/
public function create(): string
{
$output = '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
$output .= '<checkstyle>' . "\n";
foreach ($this->issues_data as $issue_data) {
$message = sprintf(
'%s: %s',
$issue_data['type'],
$issue_data['message']
);
$output .= '<file name="' . htmlspecialchars($issue_data['file_name']) . '">' . "\n";
$output .= ' ';
$output .= '<error';
$output .= ' line="' . $issue_data['line_from'] . '"';
$output .= ' column="' . $issue_data['column_from'] . '"';
$output .= ' severity="' . $issue_data['severity'] . '"';
$output .= ' message="' . htmlspecialchars($message) . '"';
$output .= '/>' . "\n";
$output .= '</file>' . "\n";
}
$output .= '</checkstyle>' . "\n";
return $output;
}
}