| 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 | 77 | public function __construct(string $method, string $endpoint) |
|
| 21 | |||
| 22 | 1 | public function getMethod(): string |
|
| 26 | |||
| 27 | 38 | public function getParameters(): array |
|
| 37 | |||
| 38 | 1 | public function getEndpoint(): Url |
|
| 42 | } |
||
| 43 |