Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function boot() |
||
13 | { |
||
14 | $this->loadRoutesFrom(__DIR__ . '/routes/geo-location.php'); |
||
15 | |||
16 | $this->publishes([ |
||
17 | __DIR__ . '/config/geolocation.php' => config_path('geolocation.php'), |
||
|
|||
18 | 'geolocation-config' |
||
19 | ]); |
||
20 | $this->mergeConfigFrom(__DIR__ . '/config/geolocation.php', 'geolocation'); |
||
21 | } |
||
23 |