public function Cookie::isCleared in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Cookie.php \Symfony\Component\HttpFoundation\Cookie::isCleared()
Whether this cookie is about to be cleared.
Return value
bool
File
- vendor/
symfony/ http-foundation/ Cookie.php, line 186
Class
- Cookie
- Represents a cookie.
Namespace
Symfony\Component\HttpFoundationCode
public function isCleared() {
return $this->expire < time();
}