| 1 | <?php | ||
| 7 | class SupportServiceProvider extends ServiceProvider | ||
| 8 | { | ||
| 9 | /** | ||
| 10 | * Bootstrap the service provider. | ||
| 11 | * | ||
| 12 | * @return void | ||
| 13 | */ | ||
| 14 | public function boot() | ||
| 18 | |||
| 19 | /** | ||
| 20 | * Register the commands for the application. | ||
| 21 | * | ||
| 22 | * @return void | ||
| 23 | */ | ||
| 24 | protected function registerCommands() | ||
| 32 | |||
| 33 | /** | ||
| 34 | * Register the service provider. | ||
| 35 | * | ||
| 36 | * @return void | ||
| 37 | */ | ||
| 38 | public function register() | ||
| 42 | |||
| 43 | /** | ||
| 44 | * Register support singleton. | ||
| 45 | * | ||
| 46 | * @return void | ||
| 47 | */ | ||
| 48 | protected function registerSupport() | ||
| 56 | } | ||
| 57 |