public function SetCookie::getDomain in Lockr 7.3
Get the domain
Return value
string|null
2 calls to SetCookie::getDomain()
- SetCookie::matchesDomain in vendor/
guzzlehttp/ guzzle/ src/ Cookie/ SetCookie.php - Check if the cookie matches a domain value
- SetCookie::validate in vendor/
guzzlehttp/ guzzle/ src/ Cookie/ SetCookie.php - Check if the cookie is valid according to RFC 6265
File
- vendor/
guzzlehttp/ guzzle/ src/ Cookie/ SetCookie.php, line 150
Class
- SetCookie
- Set-Cookie object
Namespace
GuzzleHttp\CookieCode
public function getDomain() {
return $this->data['Domain'];
}