Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
13 | final class ConsoleFacade extends AbstractFacade |
||
14 | { |
||
15 | public function sanitizeFilename(string $filename): string |
||
16 | { |
||
17 | return $this->getFactory() |
||
18 | ->createFilenameSanitizer() |
||
19 | ->sanitize($filename); |
||
20 | } |
||
21 | |||
22 | public function parseArguments(string $desiredNamespace): CommandArguments |
||
27 | } |
||
28 | |||
29 | public function generateFileContent( |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @return list<string> the removed file paths |
||
41 | */ |
||
42 | public function clearCacheFile(): array |
||
49 |