| Total Complexity | 3 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class SmsUpServiceProvider extends ServiceProvider |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Register. |
||
| 18 | */ |
||
| 19 | public function register() |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Register the package routes. |
||
| 35 | * |
||
| 36 | * @return void |
||
| 37 | */ |
||
| 38 | private function registerRoutes() |
||
| 39 | { |
||
| 40 | Route::group($this->routeConfiguration(), function () { |
||
| 41 | $this->loadRoutesFrom(__DIR__.'/Http/routes.php'); |
||
| 42 | }); |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get the SmsUp route group configuration array. |
||
| 47 | * |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | private function routeConfiguration() |
||
| 56 | ]; |
||
| 57 | } |
||
| 58 | } |