You are here

public function ServerRequest::withCookieParams in Auth0 Single Sign On 8.2

Return an instance with the specified cookies.

The data IS NOT REQUIRED to come from the $_COOKIE superglobal, but MUST be compatible with the structure of $_COOKIE. Typically, this data will be injected at instantiation.

This method MUST NOT update the related Cookie header of the request instance, nor related values in the server params.

This method MUST be implemented in such a way as to retain the immutability of the message, and MUST return an instance that has the updated cookie values.

Parameters

array $cookies Array of key/value pairs representing cookies.:

Return value

static

Overrides ServerRequestInterface::withCookieParams

File

vendor/guzzlehttp/psr7/src/ServerRequest.php, line 285

Class

ServerRequest
Server-side HTTP request

Namespace

GuzzleHttp\Psr7

Code

public function withCookieParams(array $cookies) {
  $new = clone $this;
  $new->cookieParams = $cookies;
  return $new;
}