1 | <?php |
||
12 | class MakeQueryFiltersCommand extends GeneratorCommand |
||
13 | { |
||
14 | /** |
||
15 | * The console command name. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $name = 'make:query-filters'; |
||
20 | |||
21 | /** |
||
22 | * The console command description. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $description = 'Create a new query filters class'; |
||
27 | |||
28 | /** |
||
29 | * The type of class being generated. |
||
30 | * |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $type = 'Query filters'; |
||
34 | |||
35 | /** |
||
36 | * Get the stub file for the generator. |
||
37 | * |
||
38 | * @return string |
||
39 | */ |
||
40 | protected function getStub() |
||
44 | |||
45 | /** |
||
46 | * Get the default namespace for the class. |
||
47 | * |
||
48 | * @param string $rootNamespace |
||
49 | * @return string |
||
50 | */ |
||
51 | protected function getDefaultNamespace($rootNamespace) |
||
59 | } |
||
60 |