Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class FolderMakeCommand extends GeneratorCommand |
||
9 | { |
||
10 | protected $name = 'ls:folder'; |
||
11 | |||
12 | protected $description = 'Create a new folder class'; |
||
13 | |||
14 | protected $type = 'Folder'; |
||
15 | |||
16 | protected function getStub(): string |
||
19 | } |
||
20 | |||
21 | protected function getDefaultNamespace($rootNamespace): string |
||
22 | { |
||
23 | return $rootNamespace . '\Storyblok\Folders'; |
||
24 | } |
||
25 | |||
26 | public function handle(): void |
||
31 | } |
||
32 | |||
33 | protected function doOtherOperations(): void |
||
44 |