You are here

public function Cookie::isHttpOnly in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/http-foundation/Cookie.php \Symfony\Component\HttpFoundation\Cookie::isHttpOnly()
  2. 8 vendor/symfony/browser-kit/Cookie.php \Symfony\Component\BrowserKit\Cookie::isHttpOnly()
  3. 8 vendor/jcalderonzumba/gastonjs/src/Cookie.php \Zumba\GastonJS\Cookie::isHttpOnly()
Same name and namespace in other branches
  1. 8.0 vendor/symfony/browser-kit/Cookie.php \Symfony\Component\BrowserKit\Cookie::isHttpOnly()

Returns the httponly flag of the cookie.

Return value

bool The cookie httponly flag

File

vendor/symfony/browser-kit/Cookie.php, line 295

Class

Cookie
Cookie represents an HTTP cookie.

Namespace

Symfony\Component\BrowserKit

Code

public function isHttpOnly() {
  return $this->httponly;
}