WordPress\AiClientDependencies\Psr\Http\Message

RequestInterface::withMethodpublicWP 1.0

Return an instance with the provided HTTP method.

While HTTP method names are typically all uppercase characters, HTTP method names are case-sensitive and thus implementations SHOULD NOT modify the given string.

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 changed request method.

Метод класса: RequestInterface{}

Хуков нет.

Возвращает

static.

Использование

$RequestInterface = new RequestInterface();
$RequestInterface->withMethod( $method ): RequestInterface;
$method(строка) (обязательный)
Case-sensitive method.

Код RequestInterface::withMethod() WP 7.0.4

public function withMethod(string $method): RequestInterface;