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

Alagoas   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 Alagoas extends State
10
{
11 1
    public function __construct()
12
    {
13 1
        parent::__construct([
14 1
            'name' => 'Alagoas',
15
            'abbr' => 'AL',
16
            'capital' => 'Maceió',
17
            'timezone' => 'America/Maceio',
18
            'region' => 'Nordeste',
19
            'dst' => false,
20
            'slug' => 'alagoas',
21
        ]);
22 1
    }
23
}
24