use DaveLiddament\StaticAnalysisResultsBaseliner\Domain\ResultsParser\Identifier;
16
17
class PhpstanJsonIdentifier implements Identifier
18
{
19
/**
20
* {@inheritdoc}
21
*/
22
public function getCode(): string
23
{
24
return 'phpstan-json-tmp';
25
}
26
27
/**
28
* {@inheritdoc}
29
*/
30
public function getDescription(): string
31
{
32
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';