You are here

public function CookieJar::getIterator in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php \GuzzleHttp\Cookie\CookieJar::getIterator()

File

vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php, line 216

Class

CookieJar
Cookie jar that stores cookies an an array

Namespace

GuzzleHttp\Cookie

Code

public function getIterator() {
  return new \ArrayIterator(array_values($this->cookies));
}