Total Complexity | 1 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
11 | class ReadOfferQuery extends BaseRoute |
||
12 | { |
||
13 | /** |
||
14 | * @var string|null |
||
15 | */ |
||
16 | protected $userUrl = '/cabinet/user/read/offer'; |
||
17 | |||
18 | /** |
||
19 | * @var string|null |
||
20 | */ |
||
21 | protected $adminUrl = '/administration/offer/read'; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $method = 'PUT'; |
||
27 | |||
28 | /** |
||
29 | * @var array |
||
30 | */ |
||
31 | protected $required = ['authToken', 'offerId']; |
||
32 | |||
33 | /** |
||
34 | * @return ReadOfferExceptionHandler |
||
35 | */ |
||
36 | public function getExceptionHandler() |
||
41 |