You are here

public function SiteAuditReportInsights::__construct in Site Audit 7

Override parent constructor to provide argument support.

Parameters

string $url: URL of site to test.

string $key: Google API key.

Overrides SiteAuditReportAbstract::__construct

File

Report/Insights.php, line 20
Contains \SiteAudit\Report\Insights.

Class

SiteAuditReportInsights
Class SiteAuditReportInsights.

Code

public function __construct($url, $key) {
  $this->registry['url'] = $url;
  $this->registry['key'] = $key;
  parent::__construct();
}