FenerumServiceProvider   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 8 2
A register() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Fenerum;
6
7
use Illuminate\Support\ServiceProvider;
8
9
class FenerumServiceProvider extends ServiceProvider
10
{
11
    public function boot()
12
    {
13
        if ($this->app->runningInConsole()) {
14
            $this->publishes([
15
                __DIR__.'/../config/fenerum.php' => config_path('fenerum.php'),
16
            ], 'fenerum');
17
        }
18
    }
19
20
    public function register()
21
    {
22
        $this->mergeConfigFrom(__DIR__.'/../config/fenerum.php', 'fenerum');
23
    }
24
}
25