Completed
Push — master ( 51b40a...749696 )
by Antonio Oertel
54s
created

Pernambuco::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 9
ccs 0
cts 7
cp 0
rs 9.6666
c 0
b 0
f 0
cc 1
eloc 6
nc 1
nop 0
crap 2
1
<?php
2
3
namespace Brazanation\States;
4
5
class Pernambuco
6
{
7
    const CODE = 26;
8
9
    const FULL_NAME = 'Pernambuco';
10
11
    const SHORT_NAME = 'PE';
12
13
    const TIMEZONE = 'America/Recife';
14
15
    public function __construct()
16
    {
17
        parent::__construct(
18
            self::FULL_NAME,
19
            self::SHORT_NAME,
20
            self::CODE,
21
            self::TIMEZONE
22
        );
23
    }
24
}
25