WordPress\AiClientDependencies\Nyholm\Psr7

ServerRequest::withCookieParamspublicWP 1.0

Method of the class: ServerRequest{}

No Hooks.

Returns

static.

Usage

$ServerRequest = new ServerRequest();
$ServerRequest->withCookieParams( $cookies ): ServerRequestInterface;
$cookies(array) (required)
.

ServerRequest::withCookieParams() code WP 7.0

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