1 | <?php |
||
5 | class QueryNext implements RequestInterface |
||
6 | { |
||
7 | const ENDPOINT = '/query/%s'; |
||
8 | |||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $nextResultIdentifier; |
||
13 | |||
14 | 2 | public function __construct(string $nextResultIdentifier) |
|
18 | |||
19 | 2 | public function getEndpoint(): string |
|
23 | |||
24 | 1 | public function getMethod(): string |
|
28 | |||
29 | 1 | public function getParams(): string |
|
33 | |||
34 | public function getMediaType(): string |
||
38 | } |
||
39 |