1 | <?php |
||
7 | class ConsoleServiceProvider 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() |
||
32 | |||
33 | /** |
||
34 | * Register the module:disable command. |
||
35 | */ |
||
36 | protected function registerDisableCommand() |
||
44 | |||
45 | /** |
||
46 | * Register the module:enable command. |
||
47 | */ |
||
48 | protected function registerEnableCommand() |
||
56 | |||
57 | /** |
||
58 | * Register the module:list command. |
||
59 | */ |
||
60 | protected function registerListCommand() |
||
68 | |||
69 | /** |
||
70 | * Register the module:migrate command. |
||
71 | */ |
||
72 | protected function registerMigrateCommand() |
||
80 | |||
81 | /** |
||
82 | * Register the module:migrate:refresh command. |
||
83 | */ |
||
84 | protected function registerMigrateRefreshCommand() |
||
92 | |||
93 | /** |
||
94 | * Register the module:migrate:reset command. |
||
95 | */ |
||
96 | protected function registerMigrateResetCommand() |
||
104 | |||
105 | /** |
||
106 | * Register the module:migrate:rollback command. |
||
107 | */ |
||
108 | protected function registerMigrateRollbackCommand() |
||
116 | |||
117 | /** |
||
118 | * Register the module:optimize command. |
||
119 | */ |
||
120 | protected function registerOptimizeCommand() |
||
128 | |||
129 | /** |
||
130 | * Register the module:seed command. |
||
131 | */ |
||
132 | protected function registerSeedCommand() |
||
140 | } |
||
141 |