HippoPHP\Hippo\HippoTextUIContext::handleXmlReportArgument PHP Method

handleXmlReportArgument() private method

private handleXmlReportArgument ( $argValue )
    private function handleXmlReportArgument($argValue)
    {
        $targetFilename = $argValue === null ? 'checkstyle.xml' : $argValue;
        $checkstyleReporter = new CheckstyleReporter($this->fileSystem);
        $checkstyleReporter->setFilename($targetFilename);
        $this->reporters[] = $checkstyleReporter;
    }