Fireguard\Report\Report::__construct PHP Method

__construct() public method

ReportContract constructor.
public __construct ( string $content, string $header = "", string $footer = "", array $config = [] ) : Report
$content string
$header string
$footer string
$config array
return Report
    public function __construct($content, $header = "", $footer = "", array $config = [])
    {
        $this->content = $content;
        $this->header = $header;
        $this->footer = $footer;
        $this->config = $config;
    }