You are here

public function SetCookie::getHttpOnly in Zircon Profile 8

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

Get whether or not this is an HTTP only cookie

Return value

bool

File

vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php, line 273

Class

SetCookie
Set-Cookie object

Namespace

GuzzleHttp\Cookie

Code

public function getHttpOnly() {
  return $this->data['HttpOnly'];
}