| [ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 3 namespace WordPress\AiClientDependencies\Psr\Http\Client; 4 5 use WordPress\AiClientDependencies\Psr\Http\Message\RequestInterface; 6 use WordPress\AiClientDependencies\Psr\Http\Message\ResponseInterface; 7 interface ClientInterface 8 { 9 /** 10 * Sends a PSR-7 request and returns a PSR-7 response. 11 * 12 * @param RequestInterface $request 13 * 14 * @return ResponseInterface 15 * 16 * @throws \Psr\Http\Client\ClientExceptionInterface If an error happens while processing the request. 17 */ 18 public function sendRequest(RequestInterface $request): ResponseInterface; 19 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated : Sat Jun 13 09:38:55 2026 | Cross-referenced by PHPXref |