$this->cookieRemoveHandler->
removeAllCookies($this->request,
$this->response
);
return;
} if ($this->config->
get('cookie_note_mode'
) === CookieRemoveSubscriber::COOKIE_MODE_TECHNICAL
) { if ($allowCookie === 1
) { return;
} $this->cookieRemoveHandler->
removeCookiesFromPreferences($this->request,
$this->response
);
} } private function isHttpCacheEnabled(): bool
{ return (bool) $this->container->
get('kernel'
)->
getHttpCacheConfig()['enabled'
];
}}