Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 14 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 2 | public static function create() |
|
16 | { |
||
17 | return [ |
||
18 | 2 | RouteInterface::METHOD_KEY => RouteInterface::POST_METHOD, |
|
19 | 2 | RouteInterface::ENDPOINT_KEY => Plan::root(), |
|
20 | 2 | RouteInterface::PARAMS_KEY => [ |
|
21 | 2 | 'name', |
|
22 | 2 | 'description', |
|
23 | 2 | 'amount', |
|
24 | 2 | 'interval', |
|
25 | 2 | 'send_invoices', |
|
26 | 2 | 'send_sms', |
|
27 | 2 | 'hosted_page', |
|
28 | 2 | 'hosted_page_url', |
|
29 | 2 | 'hosted_page_summary', |
|
30 | 2 | 'currency', |
|
31 | 2 | ], |
|
73 |