EnvExportServiceProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 18
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A register() 0 6 1
1
<?php
2
3
namespace Djunehor\Env;
4
5
use Djunehor\Env\ExportCommand;
6
use Illuminate\Support\ServiceProvider;
7
8
class EnvExportServiceProvider extends ServiceProvider
9
{
10
11
12
    /**
13
     * Register the application services.
14
     *
15
     * @return void
16
     */
17 7
    public function register()
18
    {
19 7
        $this->commands([
20 7
            ExportCommand::class,
21
        ]);
22 7
    }
23
24
25
}
26