use DaveLiddament\StaticAnalysisResultsBaseliner\Domain\ResultsParser\Identifier;
16
17
class PhpstanJsonIdentifier implements Identifier
18
{
19
public function getCode(): string
20
{
21
return 'phpstan-json-tmp';
22
}
23
24
public function getDescription(): string
25
{
26
return 'PHPStan results (JSON format). To generate use: phpstan analyse --error-format json > <filename>.json NOTE: this will be deprecated once this enhancement has been released: https://github.com/phpstan/phpstan/issues/1686';