Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | final class ReplaceRequest implements Request |
||
20 | { |
||
21 | private $spaceId; |
||
22 | private $tuple; |
||
23 | |||
24 | public function __construct(int $spaceId, array $tuple) |
||
25 | { |
||
26 | $this->spaceId = $spaceId; |
||
27 | $this->tuple = $tuple; |
||
28 | } |
||
29 | |||
30 | public function getType() : int |
||
33 | } |
||
34 | |||
35 | public function getBody() : array |
||
43 |