Completed
Push — master ( b0dccf...a37019 )
by Mike
10s
created

Service   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
dl 0
loc 8
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A boot() 0 4 1
1
<?php namespace GeneaLabs\LaravelModelCaching\Providers;
2
3
use Illuminate\Support\ServiceProvider;
4
5
class Service extends ServiceProvider
6
{
7
    protected $defer = false;
8
9
    public function boot()
10
    {
11
        $configPath = __DIR__ . '/../../config/laravel-model-caching.php';
12
        $this->mergeConfigFrom($configPath, 'laravel-model-caching');
13
    }
14
}
15