Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class PhpIPAMServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | public function boot() |
||
10 | { |
||
11 | $this->publishes([ |
||
12 | __DIR__.'/../config/phpipam.php' => base_path('config/phpipam.php'), |
||
13 | ], 'config'); |
||
14 | |||
15 | if (file_exists($file = __DIR__.'/helpers.php')) { |
||
16 | require_once $file; |
||
17 | } |
||
18 | } |
||
19 | |||
20 | public function register() |
||
27 | } |
||
28 | } |
||
29 |