Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
16 | 4 | public static function generateClasses($module, $controller) |
|
17 | { |
||
18 | 4 | $module = NameFormatter::formatModuleName($module); |
|
19 | 4 | $controller = NameFormatter::formatControllerName($controller); |
|
20 | return [ |
||
21 | 4 | self::generateControllerNamespaced($module, $controller), |
|
22 | 4 | self::generateControllerString($module, $controller) |
|
23 | ]; |
||
24 | } |
||
25 | |||
84 |