Fireguard\Report\Exporters\AbstractPhantomExporter::createHtmlFiles PHP Method

createHtmlFiles() protected method

protected createHtmlFiles ( Fireguard\Report\Contracts\ReportContract $report )
$report Fireguard\Report\Contracts\ReportContract
    protected function createHtmlFiles(ReportContract $report)
    {
        $exporter = new HtmlExporter($this->getPath(), $this->fileName);
        $this->htmlBodyPath = $exporter->saveFile($report->getContent());
        $this->htmlHeader = $this->processInlineHtml($report->getHeader());
        $this->htmlFooter = $this->processInlineHtml($report->getFooter());
    }