1 | <?php |
||
8 | class ActionMakeCommand extends GeneratorCommand |
||
9 | { |
||
10 | protected $name = 'make:action'; |
||
11 | |||
12 | protected $description = 'Create a new action class'; |
||
13 | |||
14 | protected $type = 'Action'; |
||
15 | |||
16 | protected function getStub(): string |
||
22 | |||
23 | protected function getDefaultNamespace($rootNamespace): string |
||
27 | |||
28 | protected function getOptions(): array |
||
34 | } |
||
35 |