You are here

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

Retrieve cookies.

Retrieves cookies sent by the client to the server.

The data MUST be compatible with the structure of the $_COOKIE superglobal.

Return value

array

Overrides ServerRequestInterface::getCookieParams

File

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

Class

ServerRequest
Server-side HTTP request

Namespace

GuzzleHttp\Psr7

Code

public function getCookieParams() {
  return $this->cookieParams;
}