Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class CashDesk extends RequestPage |
||
11 | { |
||
12 | public $method = 'GET'; |
||
13 | protected $path = '/v1/cashboxes/'; |
||
14 | |||
15 | /** @var integer */ |
||
16 | public $id; |
||
17 | |||
18 | /** |
||
19 | * @inheritDoc |
||
20 | */ |
||
21 | public function getPropertyMap(): array |
||
22 | { |
||
23 | return array_merge(parent::getPropertyMap(), [ |
||
24 | ]); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @inheritDoc |
||
29 | */ |
||
30 | public function getRuleList(): array |
||
34 | ]); |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @inheritDoc |
||
39 | */ |
||
40 | public function getPath(): string |
||
45 |