Searched refs:cookieArray (Results 1 – 3 of 3) sorted by relevance
33 * @param array $cookieArray The cookie fields; must contain name and value.36 public static function createFromArray(array $cookieArray) argument 38 if (!isset($cookieArray['name'])) {41 if (!isset($cookieArray['value'])) {44 $cookie = new self($cookieArray['name'], $cookieArray['value']);46 if (isset($cookieArray['path'])) {47 $cookie->setPath($cookieArray['path']);49 if (isset($cookieArray['domain'])) {50 $cookie->setDomain($cookieArray['domai[all...]
92 $cookieArray = $this->executor->execute(97 if (!is_array($cookieArray)) { // Microsoft Edge returns null even in W3C mode => emulate proper behavior101 return Cookie::createFromArray($cookieArray);127 foreach ($cookieArrays as $cookieArray) {128 $cookies[] = Cookie::createFromArray($cookieArray);
21 * @param array $cookieArray Array of SetCookie objects or a hash of25 public function __construct($strictMode = false, $cookieArray = []) argument29 foreach ($cookieArray as $cookie) {