| Total Complexity | 3 |
| Total Lines | 24 |
| 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 |