E115   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 41
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 41
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 E115 extends Element implements ElementInterface
10
{
11
    const REG = 'E115';
12
    const LEVEL = 4;
13
    const PARENT = 'E110';
14
15
    protected $parameters = [
16
        'COD_INF_ADIC' => [
17
            'type'     => 'string',
18
            'regex'    => '^\d{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