Lines Matching refs:domain
46 * @param string $domain Domain to set the cookies to
48 public static function fromArray(array $cookies, string $domain): self argument
53 'Domain' => $domain,
106 public function clear(string $domain = null, string $path = null, string $name = null): void argument
108 if (!$domain) {
115 static function (SetCookie $cookie) use ($domain): bool {
116 return !$cookie->matchesDomain($domain);
122 static function (SetCookie $cookie) use ($path, $domain): bool {
124 && $cookie->matchesDomain($domain));
130 static function (SetCookie $cookie) use ($path, $domain, $name) {
133 && $cookie->matchesDomain($domain));