[ Index ] |
PHP Cross Reference of YOURLS |
[Summary view] [Print] [Text view]
1 <?php 2 3 declare(strict_types=1); 4 5 namespace MaxMind\WebService\Http; 6 7 /** 8 * Interface Request. 9 * 10 * @internal 11 */ 12 interface Request 13 { 14 /** 15 * @param array<string, mixed> $options 16 */ 17 public function __construct(string $url, array $options); 18 19 /** 20 * @return array{0:int, 1:string|null, 2:string|null} 21 */ 22 public function post(string $body): array; 23 24 /** 25 * @return array{0:int, 1:string|null, 2:string|null} 26 */ 27 public function get(): array; 28 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Mar 31 05:10:02 2025 | Cross-referenced by PHPXref 0.7.1 |