Code Duplication    Length = 69-69 lines in 2 locations

src/Elements/I050.php 1 location

@@ 13-81 (lines=69) @@
10
 * Elemento I050 do Bloco I OBRIGATÓRIO [1:N]
11
 * EGISTRO I050: PLANO DE CONTAS
12
 */
13
class I050 extends Element implements ElementInterface
14
{
15
    const REG = 'I050';
16
    const LEVEL = 3;
17
    const PARENT = '';
18
19
    protected $parameters = [
20
        'dt_alt'       => [
21
            'type'     => 'string',
22
            'regex'    => '^(0[1-9]|[1-2][0-9]|31(?!(?:0[2469]|11))|30(?!02))(0[1-9]|1[0-2])([12]\d{3})$',
23
            'required' => true,
24
            'info'     => 'Data de inclusao/alteracao.',
25
            'format'   => ''
26
        ],
27
        'cod_nat'    => [
28
            'type'     => 'string',
29
            'regex'    => '^(01|02|03|04|05|09)$',
30
            'required' => true,
31
            'info'     => 'Código da natureza da conta/grupo de contas, conforme tabela publicada pelo Sped.',
32
            'format'   => ''
33
        ],
34
        'ind_cta'        => [
35
            'type'     => 'string',
36
            'regex'    => '^(S|A)$',
37
            'required' => true,
38
            'info'     => 'Indicador do tipo de Conta: S-Sintetico, A-Analitico.',
39
            'format'   => ''
40
        ],
41
        'nivel'    => [
42
            'type'     => 'numeric',
43
            'regex'    => '^([0-9]*)$',
44
            'required' => true,
45
            'info'     => 'Nivel da conta analitica/grupo de contas.',
46
            'format'   => ''
47
        ],
48
        'cod_cta'      => [
49
            'type'     => 'string',
50
            'regex'    => '^.*$',
51
            'required' => true,
52
            'info'     => 'Codigo da conta analitica/grupo de contas.',
53
            'format'   => ''
54
        ],
55
        'cod_cta_sup'  => [
56
            'type'     => 'string',
57
            'regex'    => '^.*$',
58
            'required' => false,
59
            'info'     => 'Codigo da conta sintetica/grupo de contas de nivel imediatamente superior.',
60
            'format'   => ''
61
        ],
62
        'cta'  => [
63
            'type'     => 'string',
64
            'regex'    => '^.*$',
65
            'required' => true,
66
            'info'     => 'Nome da conta analitica/grupo de contas.',
67
            'format'   => ''
68
        ]
69
    ];
70
71
    /**
72
     * Constructor
73
     * @param \stdClass $std
74
     */
75
    public function __construct(\stdClass $std)
76
    {
77
        parent::__construct(self::REG);
78
        $this->std = $this->standarize($std);
79
        $this->postValidation();
80
    }
81
}
82

src/Elements/J900.php 1 location

@@ 13-81 (lines=69) @@
10
 * Elemento J900 do Bloco J OBRIGATÓRIO [1:1]
11
 * REGISTRO J900: ABERTURA DO ARQUIVO DIGITAL E IDENTIFICAÇÃO DO EMPRESÁRIO OU DA SOCIEDADE EMPRESÁRIA
12
 */
13
class J900 extends Element implements ElementInterface
14
{
15
    const REG = 'J900';
16
    const LEVEL = 2;
17
    const PARENT = '';
18
19
    protected $parameters = [
20
        'dnrc_encer' => [
21
            'type'     => 'string',
22
            'regex'    => '^(TERMO DE ENCERRAMENTO)$',
23
            'required' => true,
24
            'info'     => 'Texto fixo contendo TERMO DE ENCERRAMENTO.',
25
            'format'   => ''
26
        ],
27
        'num_ord' => [
28
            'type'     => 'numeric',
29
            'regex'    => '^[0-9]$',
30
            'required' => true,
31
            'info'     => 'Número de ordem do instrumento de escrituração.',
32
            'format'   => ''
33
        ],
34
        'nat_livro' => [
35
            'type'     => 'string',
36
            'regex'    => '^.{2,80}$',
37
            'required' => true,
38
            'info'     => 'Natureza do livro; finalidade a que se destinou o instrumento.',
39
            'format'   => ''
40
        ],
41
        'nome' => [
42
            'type'     => 'string',
43
            'regex'    => '^.{2,100}$',
44
            'required' => true,
45
            'info'     => 'Nome empresarial.',
46
            'format'   => ''
47
        ],
48
        'num_lin' => [
49
            'type'     => 'numeric',
50
            'regex'    => '^[0-9]$',
51
            'required' => true,
52
            'info'     => 'Quantidade total de linhas do arquivo digital.',
53
            'format'   => ''
54
        ],
55
        'dt_ini_escr'     => [
56
            'type'     => 'string',
57
            'regex'    => '^(0[1-9]|[1-2][0-9]|31(?!(?:0[2469]|11))|30(?!02))(0[1-9]|1[0-2])([12]\d{3})$',
58
            'required' => true,
59
            'info'     => 'Data inicial da escrituração.',
60
            'format'   => ''
61
        ],
62
        'dt_fin_escr'     => [
63
            'type'     => 'string',
64
            'regex'    => '^(0[1-9]|[1-2][0-9]|31(?!(?:0[2469]|11))|30(?!02))(0[1-9]|1[0-2])([12]\d{3})$',
65
            'required' => true,
66
            'info'     => 'Data de término da escrituração.',
67
            'format'   => ''
68
        ]
69
    ];
70
71
    /**
72
     * Constructor
73
     * @param \stdClass $std
74
     */
75
    public function __construct(\stdClass $std)
76
    {
77
        parent::__construct(self::REG);
78
        $this->std = $this->standarize($std);
79
        $this->postValidation();
80
    }
81
}
82