Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
5 | class ServiceProvider extends \Illuminate\Support\ServiceProvider |
||
6 | { |
||
7 | const CONFIG_PATH = __DIR__ . '/../config/live-engage-laravel.php'; |
||
8 | |||
9 | 1 | public function boot() |
|
10 | { |
||
11 | 1 | $this->publishes([ |
|
12 | 1 | self::CONFIG_PATH => config_path('live-engage-laravel.php'), |
|
13 | 1 | ], 'config'); |
|
14 | 1 | } |
|
15 | |||
16 | 1 | public function register() |
|
25 | 1 | }); |
|
26 | 1 | } |
|
28 |