1 | <?php |
||
6 | class ConsoleServiceProvider 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() |
||
33 | |||
34 | /** |
||
35 | * Register the module:disable command. |
||
36 | * |
||
37 | * @return void |
||
38 | */ |
||
39 | protected function registerDisableCommand() |
||
47 | |||
48 | /** |
||
49 | * Register the module:enable command. |
||
50 | * |
||
51 | * @return void |
||
52 | */ |
||
53 | protected function registerEnableCommand() |
||
61 | |||
62 | /** |
||
63 | * Register the module:list command. |
||
64 | * |
||
65 | * @return void |
||
66 | */ |
||
67 | protected function registerListCommand() |
||
75 | |||
76 | /** |
||
77 | * Register the module:migrate command. |
||
78 | * |
||
79 | * @return void |
||
80 | */ |
||
81 | protected function registerMigrateCommand() |
||
89 | |||
90 | /** |
||
91 | * Register the module:migrate:refresh command. |
||
92 | * |
||
93 | * @return void |
||
94 | */ |
||
95 | protected function registerMigrateRefreshCommand() |
||
103 | |||
104 | /** |
||
105 | * Register the module:migrate:reset command. |
||
106 | * |
||
107 | * @return void |
||
108 | */ |
||
109 | protected function registerMigrateResetCommand() |
||
117 | |||
118 | /** |
||
119 | * Register the module:migrate:rollback command. |
||
120 | * |
||
121 | * @return void |
||
122 | */ |
||
123 | protected function registerMigrateRollbackCommand() |
||
131 | } |
||
132 |