WordPress\AiClientDependencies\Nyholm\Psr7
ServerRequest::withCookieParams
Method of the class: ServerRequest{}
No Hooks.
Returns
static.
Usage
$ServerRequest = new ServerRequest(); $ServerRequest->withCookieParams( $cookies ): ServerRequestInterface;
- $cookies(array) (required)
- .
ServerRequest::withCookieParams() ServerRequest::withCookieParams code WP 7.0
public function withCookieParams(array $cookies): ServerRequestInterface
{
$new = clone $this;
$new->cookieParams = $cookies;
return $new;
}