Completed
Pull Request — master (#4)
by Leo
07:33
created

Bahia   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 12 1
1
<?php
2
/**
3
 * This file was generated automatically, changes on this will not have effect
4
 * PLEASE, DO NOT MODIFY THIS FILE
5
 */
6
7
namespace Brazanation\States;
8
9
class Bahia extends State
10
{
11 1
    public function __construct()
12
    {
13 1
        parent::__construct([
14 1
            'name' => 'Bahia',
15
            'abbr' => 'BA',
16
            'capital' => 'Salvador',
17
            'timezone' => 'America/Bahia',
18
            'region' => 'Nordeste',
19
            'dst' => false,
20
            'slug' => 'bahia',
21
        ]);
22 1
    }
23
}
24