Completed
Push — master ( 624185...e43015 )
by Roberto
12:57
created

J100::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 6
Ratio 100 %

Importance

Changes 0
Metric Value
dl 6
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace NFePHP\ECD\Elements;
4
5
use NFePHP\ECD\Common\Element;
6
use NFePHP\ECD\Common\ElementInterface;
7
use \stdClass;
8
9
/**
10
 * Elemento J100 do Bloco J OBRIGATÓRIO [1:1]
11
 * REGISTRO J100: ABERTURA DO ARQUIVO DIGITAL E IDENTIFICAÇÃO DO EMPRESÁRIO OU DA SOCIEDADE EMPRESÁRIA
12
 */
13 View Code Duplication
class J100 extends Element implements ElementInterface
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
14
{
15
    const REG = 'J100';
16
    const LEVEL = 3;
17
    const PARENT = '';
18
19
    protected $parameters = [
20
        'cod_agl' => [
21
            'type'     => 'string',
22
            'regex'    => '^[A-Za-z0-9]$',
23
            'required' => true,
24
            'info'     => 'Código de aglutinação atribuído pela pessoa jurídica.',
25
            'format'   => ''
26
        ],
27
        'ind_cod_agl' => [
28
            'type'     => 'string',
29
            'regex'    => '^(T|D)$',
30
            'required' => true,
31
            'info'     => 'Indicador do tipo de código de aglutinação das linhas:'
32
            .' T – Totalizador (nível que totaliza um ou mais níveis inferiores da demonstração financeira)'
33
            .' D – Detalhe (nível mais detalhado da demonstração financeira)',
34
            'format'   => ''
35
        ],
36
        'nivel_agl' => [
37
            'type'     => 'numeric',
38
            'regex'    => '^[0-9]$',
39
            'required' => true,
40
            'info'     => 'Nível do Código de aglutinação (mesmo conceito do plano de contas – Registro I050).',
41
            'format'   => ''
42
        ],
43
        'cod_agl_sup' => [
44
            'type'     => 'string',
45
            'regex'    => '^[A-Za-z0-9]$',
46
            'required' => false,
47
            'info'     => 'Código de aglutinação sintético/grupo de código de aglutinação de nível superior.',
48
            'format'   => ''
49
        ],
50
        'ind_grp_bal' => [
51
            'type'     => 'string',
52
            'regex'    => '^(A|P)$',
53
            'required' => true,
54
            'info'     => 'Indicador de grupo do balanço: A – Ativo; P – Passivo e Patrimônio Líquido.',
55
            'format'   => ''
56
        ],
57
        'descr_cod_agl' => [
58
            'type'     => 'string',
59
            'regex'    => '^[A-Za-z0-9]$',
60
            'required' => true,
61
            'info'     => 'Descrição do Código de aglutinação.',
62
            'format'   => ''
63
        ],
64
        'vl_cta_ini'    => [
65
            'type'     => 'numeric',
66
            'regex'    => '^\d+(\.\d*)?|\.\d+$',
67
            'required' => true,
68
            'info'     => 'Valor inicial do código de aglutinação no Balanço Patrimonial no exercício '
69
             . 'informado, ou de período definido em norma específica.',
70
            'format'   => '19v2'
71
        ],
72
        'ind_dc_cta_ini' => [
73
            'type'     => 'string',
74
            'regex'    => '^(D|C)$',
75
            'required' => true,
76
            'info'     => 'Indicador da situação do saldo inicial informado no campo anterior: '
77
                . 'D - Devedor; C – Credor.',
78
            'format'   => ''
79
        ],
80
        'vl_cta_fin'    => [
81
            'type'     => 'numeric',
82
            'regex'    => '^\d+(\.\d*)?|\.\d+$',
83
            'required' => true,
84
            'info'     => 'Valor final do código de aglutinação no Balanço Patrimonial no exercício informado, '
85
               . 'ou de período definido em norma específica.',
86
            'format'   => '19v2'
87
        ],
88
        'ind_dc_cta_fin' => [
89
            'type'     => 'string',
90
            'regex'    => '^(D|C)$',
91
            'required' => true,
92
            'info'     => 'Indicador da situação do saldo final informado no campo anterior: D - Devedor; C – Credor.',
93
            'format'   => ''
94
        ],
95
        'nota_exp_ref' => [
96
            'type'     => 'string',
97
            'regex'    => '^[A-Za-z0-9]{12}$',
98
            'required' => false,
99
            'info'     => 'Referência a numeração das notas explicativas relativas às demonstrações contábeis.',
100
            'format'   => ''
101
        ]
102
    ];
103
104
    /**
105
     * Constructor
106
     * @param \stdClass $std
107
     */
108
    public function __construct(\stdClass $std)
109
    {
110
        parent::__construct(self::REG);
111
        $this->std = $this->standarize($std);
112
        $this->postValidation();
0 ignored issues
show
Unused Code introduced by
The call to the method NFePHP\ECD\Elements\J100::postValidation() seems un-needed as the method has no side-effects.

PHP Analyzer performs a side-effects analysis of your code. A side-effect is basically anything that might be visible after the scope of the method is left.

Let’s take a look at an example:

class User
{
    private $email;

    public function getEmail()
    {
        return $this->email;
    }

    public function setEmail($email)
    {
        $this->email = $email;
    }
}

If we look at the getEmail() method, we can see that it has no side-effect. Whether you call this method or not, no future calls to other methods are affected by this. As such code as the following is useless:

$user = new User();
$user->getEmail(); // This line could safely be removed as it has no effect.

On the hand, if we look at the setEmail(), this method _has_ side-effects. In the following case, we could not remove the method call:

$user = new User();
$user->setEmail('email@domain'); // This line has a side-effect (it changes an
                                 // instance variable).
Loading history...
113
    }
114
}
115