1 | <?php |
||
8 | class Query implements RequestInterface |
||
9 | { |
||
10 | const ENDPOINT = '/query/'; |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $queryString; |
||
16 | |||
17 | 4 | public function __construct(string $queryString) |
|
21 | |||
22 | 4 | public function getEndpoint(): string |
|
30 | |||
31 | 3 | public function getMethod(): RequestMethod |
|
35 | |||
36 | 3 | public function getParams(): array |
|
40 | |||
41 | 3 | public function getContentType(): ContentType |
|
45 | } |
||
46 |