LoadConfiguration   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 1
c 1
b 1
f 0
lcom 0
cbo 1
dl 0
loc 14
ccs 3
cts 3
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A bootstrap() 0 4 1
1
<?php namespace Lanin\Laravel\SetupWizard\Support\Bootstrap;
2
3
use Illuminate\Contracts\Foundation\Application;
4
5
class LoadConfiguration extends \Illuminate\Foundation\Bootstrap\LoadConfiguration
6
{
7
8
    /**
9
     * Update settings in the existing config repository.
10
     *
11
     * @param Application $app
12
     */
13 4
    public function bootstrap(Application $app)
14
    {
15 4
        $this->loadConfigurationFiles($app, $app['config']);
16 4
    }
17
18
}
19