Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 13 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
9 | 26 | public static function create($path, $controller, array $methods, array $options = []) |
|
10 | { |
||
11 | 26 | return new Route( |
|
12 | 26 | $path, |
|
13 | [ |
||
14 | 26 | '_controller' => $controller, |
|
15 | 26 | ], |
|
16 | 26 | [], |
|
17 | [ |
||
18 | 26 | 'cruds_api' => true, |
|
19 | 26 | 'cruds_options' => $options, |
|
20 | 26 | ], |
|
21 | 26 | '', |
|
22 | 26 | [], |
|
23 | 26 | $methods, |
|
24 | '' |
||
25 | 26 | ); |
|
26 | } |
||
27 | } |
||
28 |