Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
28 | 122 | public function __construct(int $spaceId, int $indexId, array $key, int $offset, int $limit, int $iteratorType) |
|
29 | { |
||
30 | 122 | $this->spaceId = $spaceId; |
|
31 | 122 | $this->indexId = $indexId; |
|
32 | 122 | $this->key = $key; |
|
33 | 122 | $this->offset = $offset; |
|
34 | 122 | $this->limit = $limit; |
|
35 | 122 | $this->iteratorType = $iteratorType; |
|
36 | 122 | } |
|
55 |