| 1 | <?php declare(strict_types=1); |
||
| 8 | abstract class Request implements RequestInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @throws InvalidArgumentException |
||
| 12 | */ |
||
| 13 | 1 | public function validate(): void |
|
| 21 | |||
| 22 | 1 | public static function getMethods() : array |
|
| 32 | |||
| 33 | 1 | public function getBody(): array |
|
| 37 | |||
| 38 | 2 | public function getOptions(): array |
|
| 42 | } |
||
| 43 |