Author: James Brooks (jbrooksuk@me.com)
Inheritance: implements HippoPHP\Hippo\Reporters\ReporterInterface
コード例 #1
0
ファイル: HippoTextUIContext.php プロジェクト: hippophp/hippo
 private function handleXmlReportArgument($argValue)
 {
     $targetFilename = $argValue === null ? 'checkstyle.xml' : $argValue;
     $checkstyleReporter = new CheckstyleReporter($this->fileSystem);
     $checkstyleReporter->setFilename($targetFilename);
     $this->reporters[] = $checkstyleReporter;
 }