Author: James Brooks (jbrooksuk@me.com)
Inheritance: implements HippoPHP\Hippo\Reporters\ReporterInterface
Example #1
0
 private function handleXmlReportArgument($argValue)
 {
     $targetFilename = $argValue === null ? 'checkstyle.xml' : $argValue;
     $checkstyleReporter = new CheckstyleReporter($this->fileSystem);
     $checkstyleReporter->setFilename($targetFilename);
     $this->reporters[] = $checkstyleReporter;
 }