| 1 | <?php declare(strict_types=1); |
||
| 8 | abstract class BaseRequest implements Request |
||
| 9 | { |
||
| 10 | private $method; |
||
| 11 | |||
| 12 | private $endpoint; |
||
| 13 | |||
| 14 | protected $parameters = []; |
||
| 15 | |||
| 16 | public function __construct(string $method, string $endpoint) |
||
| 21 | |||
| 22 | public function getMethod(): string |
||
| 26 | |||
| 27 | public function getParameters(): array |
||
| 37 | |||
| 38 | public function getEndpoint(): Url |
||
| 42 | } |
||
| 43 |