Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | 2 | public static function update() |
|
45 | { |
||
46 | return [ |
||
47 | 2 | RouteInterface::METHOD_KEY => RouteInterface::PUT_METHOD, |
|
48 | 2 | RouteInterface::ENDPOINT_KEY => Page::root() . '/{id}', |
|
49 | 2 | RouteInterface::PARAMS_KEY => [ |
|
50 | 2 | 'name', |
|
51 | 2 | 'description', |
|
52 | 2 | 'amount', |
|
53 | 2 | 'active', |
|
54 | 2 | ], |
|
55 | 2 | RouteInterface::ARGS_KEY => ['id'], |
|
56 | 2 | ]; |
|
59 |