Lines Matching refs:cookie
17 protected $cookie = []; variable in Facebook\\WebDriver\\Cookie
28 $this->cookie['name'] = $name;
29 $this->cookie['value'] = $value;
44 $cookie = new self($cookieArray['name'], $cookieArray['value']);
47 $cookie->setPath($cookieArray['path']);
50 $cookie->setDomain($cookieArray['domain']);
53 $cookie->setExpiry($cookieArray['expiry']);
56 $cookie->setSecure($cookieArray['secure']);
59 $cookie->setHttpOnly($cookieArray['httpOnly']);
62 $cookie->setSameSite($cookieArray['sameSite']);
65 return $cookie;
201 $cookie = $this->cookie;
202 if (!isset($cookie['secure'])) {
204 $cookie['secure'] = false;
207 return $cookie;
217 return isset($this->cookie[$offset]);
227 return $this->offsetExists($offset) ? $this->cookie[$offset] : null;
239 unset($this->cookie[$offset]);
241 $this->cookie[$offset] = $value;
252 unset($this->cookie[$offset]);