1 | <?php |
||
19 | final class Select implements Request |
||
20 | { |
||
21 | private $spaceId; |
||
22 | private $indexId; |
||
23 | private $key; |
||
24 | private $offset; |
||
25 | private $limit; |
||
26 | private $iterator; |
||
27 | |||
28 | 128 | public function __construct(int $spaceId, int $indexId, array $key, int $offset, int $limit, int $iterator) |
|
37 | |||
38 | 128 | public function getType() : int |
|
42 | |||
43 | 128 | public function getBody() : array |
|
54 | } |
||
55 |