GeoServiceProvider   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 3
lcom 1
cbo 3
dl 0
loc 22
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 10 2
A register() 0 8 1
1
<?php
2
3
namespace Leitom\Geo;
4
5
use Leitom\Geo\Console\ImportCommand;
6
use Leitom\Geo\Console\RemoveCommand;
7
use Illuminate\Support\ServiceProvider;
8
9
class GeoServiceProvider extends ServiceProvider
10
{
11
    public function boot()
12
    {
13
        if ($this->app->runningInConsole()) {
14
            $this->publishes([
15
                __DIR__.'/../config/config.php' => config_path('geo.php'),
16
            ], 'config');
17
18
            $this->commands([ImportCommand::class, RemoveCommand::class]);
19
        }
20
    }
21
22
    public function register()
23
    {
24
        $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'geo');
25
26
        $this->app->singleton('geo', function ($app) {
27
            return new Geo($app);
28
        });
29
    }
30
}
31