1 | <?php |
||
6 | class CommandServiceProvider extends ServiceProvider |
||
7 | { |
||
8 | /** |
||
9 | * Bootstrap the application services. |
||
10 | * |
||
11 | * @return void |
||
12 | */ |
||
13 | public function boot() |
||
17 | |||
18 | /** |
||
19 | * Register the application services. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | public function register() |
||
31 | |||
32 | /** |
||
33 | * Register the module:disable command. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | protected function registerDisableCommand() |
||
45 | |||
46 | /** |
||
47 | * Register the module:enable command. |
||
48 | * |
||
49 | * @return void |
||
50 | */ |
||
51 | protected function registerEnableCommand() |
||
59 | |||
60 | /** |
||
61 | * Register the module:list command. |
||
62 | * |
||
63 | * @return void |
||
64 | */ |
||
65 | protected function registerListCommand() |
||
73 | |||
74 | /** |
||
75 | * Register the module:migrate command. |
||
76 | * |
||
77 | * @return void |
||
78 | */ |
||
79 | protected function registerMigrateCommand() |
||
87 | |||
88 | /** |
||
89 | * Register the module:migrate:refresh command. |
||
90 | * |
||
91 | * @return void |
||
92 | */ |
||
93 | protected function registerMigrateRefreshCommand() |
||
101 | } |
||
102 |