Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 279 | public function __construct(int $spaceId, int $indexId, array $key, int $offset, int $limit, int $iteratorType) |
|
25 | { |
||
26 | 279 | $this->body = [ |
|
27 | 279 | Keys::KEY => $key, |
|
28 | 279 | Keys::SPACE_ID => $spaceId, |
|
29 | 279 | Keys::INDEX_ID => $indexId, |
|
30 | 279 | Keys::LIMIT => $limit, |
|
31 | 279 | Keys::OFFSET => $offset, |
|
32 | 279 | Keys::ITERATOR => $iteratorType, |
|
33 | 279 | ]; |
|
46 |