| Total Complexity | 4 | 
| Total Lines | 35 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 9 | class SortRequestServiceProvider extends ServiceProvider | ||
| 10 | { | ||
| 11 | /** | ||
| 12 | * Bootstrap the application services. | ||
| 13 | */ | ||
| 14 |     public function boot() { } | ||
| 15 | |||
| 16 | /** | ||
| 17 | * Register the application services. | ||
| 18 | */ | ||
| 19 | public function register() | ||
| 23 | } | ||
| 24 | |||
| 25 | /** | ||
| 26 | * Register the console commands the package provides. | ||
| 27 | */ | ||
| 28 | private function registerConsoleCommands() | ||
| 29 |     { | ||
| 30 | $this->commands([ | ||
| 31 | SorterMakeCommand::class | ||
| 32 | ]); | ||
| 33 | } | ||
| 34 | |||
| 35 | /** | ||
| 36 | * Register the macros the package provides. | ||
| 37 | */ | ||
| 38 | private function registerMacros() | ||
| 44 | }); | ||
| 45 | } | ||
| 46 | } | ||
| 47 |