Production   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 6
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
namespace Eduardokum\CorreiosPhp\Config;
3
4
use Eduardokum\CorreiosPhp\Contracts\Config\Config as ConfigContract;
5
6
class Production extends Config implements ConfigContract
7
{
8
    public function __construct()
9
    {
10
        parent::__construct();
11
        $this->environment = 'production';
12
    }
13
}
14