46     public function has(
string $name): bool;
    55     public function get(
string $name): ?
Cookie;
    63     public function getAll(): array;
 
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
 
getAll()
Fetches all cookies from the current jar. 
 
has(string $name)
Checks if a cookie with the given name is in the jar. 
 
without(string $name)
Creates a cookie jar without the specified cookie. 
 
renderIntoResponseHeader(ResponseInterface $response)
Render CookieJar into a Response. 
 
with(Cookie $setCookie)
Creates a new cookie jar with the given cookie.