50 return $this->cookies->has($name);
59 $cookie = $this->cookies->get(
$name);
61 return (is_null($cookie)) ? null :
new CookieWrapper($cookie);
71 foreach ($this->cookies->getAll() as $cookie) {
75 return $wrappedCookies;
87 $wrapper = $setCookie;
88 $internalCookie = $wrapper->getImplementation();
91 $clone->cookies = $this->cookies->with($internalCookie);
102 $clone = clone $this;
103 $clone->cookies = $this->cookies->
without($name);
114 return $this->cookies->renderIntoSetCookieHeader($response);
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
renderIntoResponseHeader(ResponseInterface $response)
without(string $name)
Creates a cookie jar without the specified cookie.
with(Cookie $setCookie)
Creates a new cookie jar with the given cookie.
__construct(SetCookies $cookies)
CookieJarWrapper constructor.