mirror of
https://github.com/danog/psalm.git
synced 2024-12-13 01:37:23 +01:00
30 lines
691 B
PHP
30 lines
691 B
PHP
<?php
|
|
namespace Psalm\Report;
|
|
|
|
use Psalm\Config;
|
|
use Psalm\Report;
|
|
|
|
class TextReport extends Report
|
|
{
|
|
/**
|
|
* {{@inheritdoc}}
|
|
*/
|
|
public function create(): string
|
|
{
|
|
$output = '';
|
|
foreach ($this->issues_data as $issue_data) {
|
|
$output .= sprintf(
|
|
'%s:%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['type'],
|
|
$issue_data['message']
|
|
) . "\n";
|
|
}
|
|
|
|
return $output;
|
|
}
|
|
}
|