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