Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 16 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
52 | 2 | public static function update() |
|
53 | { |
||
54 | return [ |
||
55 | 2 | RouteInterface::METHOD_KEY => RouteInterface::PUT_METHOD, |
|
56 | 2 | RouteInterface::ENDPOINT_KEY => Plan::root() . '/{id}', |
|
57 | 2 | RouteInterface::PARAMS_KEY => [ |
|
58 | 2 | 'name', |
|
59 | 2 | 'description', |
|
60 | 2 | 'amount', |
|
61 | 2 | 'interval', |
|
62 | 2 | 'send_invoices', |
|
63 | 2 | 'send_sms', |
|
64 | 2 | 'hosted_page', |
|
65 | 2 | 'hosted_page_url', |
|
66 | 2 | 'hosted_page_summary', |
|
67 | 2 | 'currency', |
|
68 | 2 | ], |
|
69 | 2 | RouteInterface::ARGS_KEY => ['id'], |
|
70 | 2 | ]; |
|
73 |