SebastianBergmann\PHPCPD\Log\AbstractXmlLogger::__construct PHP Method

__construct() public method

Constructor.
public __construct ( string $filename )
$filename string
    public function __construct($filename)
    {
        $this->document = new \DOMDocument('1.0', 'UTF-8');
        $this->document->formatOutput = true;
        $this->filename = $filename;
    }