FenerumServiceProvider::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
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