You are here

public function SetCookie::getSecure in Zircon Profile 8.0

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

Get whether or not this is a secure cookie

Return value

null|bool

File

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

Class

SetCookie
Set-Cookie object

Namespace

GuzzleHttp\Cookie

Code

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