Z1910   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 33
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace NFePHP\EFD\Elements\ICMSIPI;
4
5
use NFePHP\EFD\Common\Element;
6
use NFePHP\EFD\Common\ElementInterface;
7
use \stdClass;
8
9
class Z1910 extends Element implements ElementInterface
10
{
11
    const REG = '1910';
12
    const LEVEL = 3;
13
    const PARENT = '1900';
14
15
    protected $parameters = [
16
        'DT_INI' => [
17
            'type'     => 'integer',
18
            'regex'    => '^(0[1-9]|[1-2][0-9]|31(?!(?:0[2469]|11))|30(?!02))(0[1-9]|1[0-2])([12]\d{3})$',
19
            'required' => true,
20
            'info'     => 'Data inicial da sub-apuração',
21
            'format'   => ''
22
        ],
23
        'DT_FIN' => [
24
            'type'     => 'integer',
25
            'regex'    => '^(0[1-9]|[1-2][0-9]|31(?!(?:0[2469]|11))|30(?!02))(0[1-9]|1[0-2])([12]\d{3})$',
26
            'required' => true,
27
            'info'     => 'Data final da sub-apuração',
28
            'format'   => ''
29
        ]
30
    ];
31
32
    /**
33
     * Constructor
34
     * @param \stdClass $std
35
     */
36
    public function __construct(\stdClass $std)
37
    {
38
        parent::__construct(self::REG);
39
        $this->std = $this->standarize($std);
40
    }
41
}
42