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