1 | <?php |
||
8 | class SolutionMakeCommand extends GeneratorCommand |
||
9 | { |
||
10 | /** |
||
11 | * The console command name. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $name = 'make:solution'; |
||
16 | |||
17 | /** |
||
18 | * The console command description. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = 'Create a new custom Ignition solution class'; |
||
23 | |||
24 | /** |
||
25 | * The type of class being generated. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $type = 'Solution'; |
||
30 | |||
31 | /** |
||
32 | * Get the stub file for the generator. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | protected function getStub() |
||
42 | |||
43 | /** |
||
44 | * Get the default namespace for the class. |
||
45 | * |
||
46 | * @param string $rootNamespace |
||
47 | * @return string |
||
48 | */ |
||
49 | protected function getDefaultNamespace($rootNamespace) |
||
53 | |||
54 | /** |
||
55 | * Get the console command options. |
||
56 | * |
||
57 | * @return array |
||
58 | */ |
||
59 | protected function getOptions() |
||
65 | } |
||
66 |