| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function boot() |
||
| 22 | { |
||
| 23 | $this->loadViewsFrom(base_path('resources/views/cornford/googlmapper'), 'googlmapper'); |
||
| 24 | |||
| 25 | $this->publishes( |
||
| 26 | [ |
||
| 27 | __DIR__ . '/../config/config.php' => config_path('googlmapper.php'), |
||
| 28 | __DIR__ . '/../resources/views' => base_path('resources/views/cornford/googlmapper') |
||
| 29 | ], |
||
| 30 | 'googlmapper' |
||
| 31 | ); |
||
| 32 | |||
| 33 | $this->app->alias(Mapper::class, 'mapper'); |
||
| 34 | } |
||
| 35 | |||
| 64 |