| [ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 3 declare (strict_types=1); 4 namespace WordPress\AiClient\Providers\Http\Contracts; 5 6 /** 7 * Interface for models that require HTTP transport capabilities. 8 * 9 * @since 0.1.0 10 */ 11 interface WithHttpTransporterInterface 12 { 13 /** 14 * Sets the HTTP transporter. 15 * 16 * @since 0.1.0 17 * 18 * @param HttpTransporterInterface $transporter The HTTP transporter instance. 19 * @return void 20 */ 21 public function setHttpTransporter(\WordPress\AiClient\Providers\Http\Contracts\HttpTransporterInterface $transporter): void; 22 /** 23 * Returns the HTTP transporter. 24 * 25 * @since 0.1.0 26 * 27 * @return HttpTransporterInterface The HTTP transporter instance. 28 */ 29 public function getHttpTransporter(): \WordPress\AiClient\Providers\Http\Contracts\HttpTransporterInterface; 30 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated : Sat Jun 13 09:38:55 2026 | Cross-referenced by PHPXref |