mirror of
https://github.com/danog/psalm.git
synced 2025-01-07 13:42:11 +01:00
30 lines
661 B
PHP
30 lines
661 B
PHP
<?php
|
|
namespace Psalm\Report;
|
|
|
|
use Psalm\Config;
|
|
use Psalm\Report;
|
|
use function sprintf;
|
|
|
|
class EmacsReport extends Report
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function create(): string
|
|
{
|
|
$output = '';
|
|
foreach ($this->issues_data as $issue_data) {
|
|
$output .= sprintf(
|
|
'%s:%s:%s:%s - %s',
|
|
$issue_data->file_path,
|
|
$issue_data->line_from,
|
|
$issue_data->column_from,
|
|
($issue_data->severity === Config::REPORT_ERROR ? 'error' : 'warning'),
|
|
$issue_data->message
|
|
) . "\n";
|
|
}
|
|
|
|
return $output;
|
|
}
|
|
}
|