Test Failed
Pull Request — master (#11)
by
unknown
01:51
created

Estado   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 12
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace PhpCfdi\SatCatalogos\Nomina;
6
7
use PhpCfdi\SatCatalogos\Common\AbstractEntryIdentifiable;
8
use PhpCfdi\SatCatalogos\Common\EntryIdentifiable;
9
10
class Estado extends AbstractEntryIdentifiable implements EntryIdentifiable
11
{
12
    /** @var string */
13
    public $estado;
14
15
    /** @var string */
16
    public $pais;
17
18 1
    public function __construct(string $estado, string $pais)
19
    {
20 1
        $this->estado = $estado;
21 1
        $this->pais = $pais;
22 1
    }
23
}
24