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

Amazonas::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 12
ccs 4
cts 4
cp 1
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 9
nc 1
nop 0
crap 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 Amazonas extends State
10
{
11 1
    public function __construct()
12
    {
13 1
        parent::__construct([
14 1
            'name' => 'Amazonas',
15
            'abbr' => 'AM',
16
            'capital' => 'Manaus',
17
            'timezone' => 'America/Manaus',
18
            'region' => 'Norte',
19
            'dst' => false,
20
            'slug' => 'amazonas',
21
        ]);
22 1
    }
23
}
24