WordPress\AiClientDependencies\Psr\Http\Message

ResponseInterface::withStatuspublicWP 1.0

Return an instance with the specified status code and, optionally, reason phrase.

If no reason phrase is specified, implementations MAY choose to default to the RFC 7231 or IANA recommended reason phrase for the response's status code.

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 status and reason phrase.

Method of the class: ResponseInterface{}

No Hooks.

Returns

static.

Usage

$ResponseInterface = new ResponseInterface();
$ResponseInterface->withStatus( $code, $reasonPhrase ): ResponseInterface;
$code(int) (required)
The 3-digit integer result code to set.
$reasonPhrase(string)
The reason phrase to use with the
php provided status code; if none is provided, implementations MAY use the defaults as suggested in the HTTP specification. .
Default: ''

ResponseInterface::withStatus() code WP 7.0

public function withStatus(int $code, string $reasonPhrase = ''): ResponseInterface;