Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | final class ConsoleFacade extends AbstractFacade |
||
15 | { |
||
16 | public function sanitizeFilename(string $filename): string |
||
17 | { |
||
18 | return $this->getFactory() |
||
19 | ->createFilenameSanitizer() |
||
|
|||
20 | ->sanitize($filename); |
||
21 | } |
||
22 | |||
23 | public function parseArguments(string $desiredNamespace): CommandArguments |
||
24 | { |
||
25 | return $this->getFactory() |
||
26 | ->createCommandArgumentsParser() |
||
27 | ->parse($desiredNamespace); |
||
28 | } |
||
29 | |||
30 | public function generateFileContent( |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @return list<AppModule> |
||
42 | */ |
||
43 | public function findAllAppModules(string $filter = ''): array |
||
48 | } |
||
49 | } |
||
50 |