WeatherServiceProvider::boot()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 0
1
<?php
2
3
namespace GNAHotelSolutions\Weather;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class WeatherServiceProvider extends ServiceProvider
8
{
9
    public function boot()
10
    {
11
        if ($this->app->runningInConsole()) {
12
            $this->publishes([
13
                __DIR__.'/../config/config.php' => config_path('weather.php'),
14
            ], 'config');
15
        }
16
    }
17
18
    public function register()
19
    {
20
        $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'weather');
21
22
        $this->app->singleton('weather', function () {
23
            return new Weather;
24
        });
25
    }
26
}
27