Constructor.
Parameters
$allowedDomainsstring[]optional- List of domains that are allowed for web search.
Default:
[] $disallowedDomainsstring[]optional- List of domains that are disallowed for web search.
Default:
[]
Source
public function __construct(array $allowedDomains = [], array $disallowedDomains = [])
{
$this->allowedDomains = $allowedDomains;
$this->disallowedDomains = $disallowedDomains;
}
Changelog
| Version | Description |
|---|---|
| 0.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.