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

MatoGrosso::__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 MatoGrosso extends State
10
{
11 1
    public function __construct()
12
    {
13 1
        parent::__construct([
14 1
            'name' => 'Mato Grosso',
15
            'abbr' => 'MT',
16
            'capital' => 'Cuiabá',
17
            'timezone' => 'America/Cuiaba',
18
            'region' => 'Centro-Oeste',
19
            'dst' => true,
20
            'slug' => 'mato-grosso',
21
        ]);
22 1
    }
23
}
24