Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class SmsGatewayServiceProvider extends ServiceProvider |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * Bootstrap any application services. |
||
15 | * |
||
16 | * @return void |
||
17 | */ |
||
18 | public function boot() |
||
24 | /* |
||
25 | $this->loadViewsFrom(__DIR__.'/../resources/views', 'skeleton'); |
||
26 | $this->publishes([ |
||
27 | __DIR__.'/../resources/views' => base_path('resources/views/vendor/skeleton'), |
||
28 | ], 'views'); |
||
29 | */ |
||
30 | } |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * Register any application services. |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | public function register() |
||
43 |