public function Cookie::isSecure in Zircon Profile 8
Same name in this branch
- 8 vendor/symfony/http-foundation/Cookie.php \Symfony\Component\HttpFoundation\Cookie::isSecure()
- 8 vendor/symfony/browser-kit/Cookie.php \Symfony\Component\BrowserKit\Cookie::isSecure()
- 8 vendor/jcalderonzumba/gastonjs/src/Cookie.php \Zumba\GastonJS\Cookie::isSecure()
Same name and namespace in other branches
- 8.0 vendor/jcalderonzumba/gastonjs/src/Cookie.php \Zumba\GastonJS\Cookie::isSecure()
Is a secure cookie?
Return value
bool
File
- vendor/
jcalderonzumba/ gastonjs/ src/ Cookie.php, line 56
Class
- Cookie
- Class Cookie @package Zumba\GastonJS
Namespace
Zumba\GastonJSCode
public function isSecure() {
return isset($this->attributes['secure']);
}