Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class InfobipSmsServiceProvider extends ServiceProvider |
||
11 | { |
||
12 | /** |
||
13 | * Bootstrap services. |
||
14 | * |
||
15 | * @return void |
||
16 | */ |
||
17 | public function boot() |
||
18 | { |
||
19 | if ($this->app->runningInConsole()) { |
||
20 | $this->publishes([ |
||
21 | __DIR__.'/../../config/infobip-sms.php' => config_path('infobip-sms.php'), |
||
22 | ], 'infobip-sms'); |
||
23 | } |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Register services. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function register() |
||
42 | } |
||
43 | } |
||
44 |