1 | <?php |
||
7 | class GeneratorServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the application services. |
||
11 | */ |
||
12 | public function boot() |
||
16 | |||
17 | /** |
||
18 | * Register the application services. |
||
19 | */ |
||
20 | public function register() |
||
30 | |||
31 | /** |
||
32 | * Register the make:module:controller command. |
||
33 | */ |
||
34 | private function registerMakeControllerCommand() |
||
42 | |||
43 | /** |
||
44 | * Register the make:module:middleware command. |
||
45 | */ |
||
46 | private function registerMakeMiddlewareCommand() |
||
54 | |||
55 | /** |
||
56 | * Register the make:module:migration command. |
||
57 | */ |
||
58 | private function registerMakeMigrationCommand() |
||
66 | |||
67 | /** |
||
68 | * Register the make:module:model command. |
||
69 | */ |
||
70 | private function registerMakeModelCommand() |
||
78 | |||
79 | /** |
||
80 | * Register the make:module command. |
||
81 | */ |
||
82 | private function registerMakeModuleCommand() |
||
90 | |||
91 | /** |
||
92 | * Register the make:module:request command. |
||
93 | */ |
||
94 | private function registerMakeRequestCommand() |
||
102 | |||
103 | /** |
||
104 | * Register the make:module:seeder command. |
||
105 | */ |
||
106 | private function registerMakeSeederCommand() |
||
114 | } |
||
115 |