Z1925::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 2
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 Z1925 extends Element implements ElementInterface
10
{
11
    const REG = '1925';
12
    const LEVEL = 5;
13
    const PARENT = '1920';
14
15
    protected $parameters = [
16
        'COD_INF_ADIC' => [
17
            'type'     => 'string',
18
            'regex'    => '^.{8}$',
19
            'required' => true,
20
            'info'     => 'Código da informação adicional conforme tabela a ser '
21
            .'definida pelas SEFAZ, conforme tabela definida no item 5.2.',
22
            'format'   => ''
23
        ],
24
        'VL_INF_ADIC' => [
25
            'type'     => 'numeric',
26
            'regex'    => '^\d+(\.\d*)?|\.\d+$',
27
            'required' => true,
28
            'info'     => 'Valor referente à informação adicional',
29
            'format'   => '15v2'
30
        ],
31
        'DESCR_COMPL_AJ' => [
32
            'type'     => 'string',
33
            'regex'    => '^.*$',
34
            'required' => false,
35
            'info'     => 'Descrição complementar do ajuste',
36
            'format'   => ''
37
        ]
38
    ];
39
40
    /**
41
     * Constructor
42
     * @param \stdClass $std
43
     */
44
    public function __construct(\stdClass $std)
45
    {
46
        parent::__construct(self::REG);
47
        $this->std = $this->standarize($std);
48
    }
49
}
50