for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Static Analysis Results Baseliner (sarb).
*
* (c) Dave Liddament
* For the full copyright and licence information please view the LICENSE file distributed with this source code.
*/
declare(strict_types=1);
namespace DaveLiddament\StaticAnalysisResultsBaseliner\Plugins\ResultsParsers\ExakatJsonResultsParser;
use DaveLiddament\StaticAnalysisResultsBaseliner\Domain\ResultsParser\Identifier;
class ExakatJsonIdentifier implements Identifier
{
public function getCode(): string
return 'exakat-sarb';
}
public function getDescription(): string
return 'Exakat results (JSON format, SARB support). To generate use: php exakat.phar report -p <project> -format Sarb';