Code Duplication    Length = 90-91 lines in 2 locations

src/Elements/I250.php 1 location

@@ 15-104 (lines=90) @@
12
 *
13
 * Alterar campos: vl_dc / vl_dc_mf
14
 */
15
class I250 extends Element implements ElementInterface
16
{
17
    const REG = 'I250';
18
    const LEVEL = 4;
19
    const PARENT = '';
20
21
    protected $parameters = [
22
        'cod_cta'  => [
23
            'type'     => 'string',
24
            'regex'    => '^.*$',
25
            'required' => true,
26
            'info'     => 'Código da conta analitica',
27
            'format'   => ''
28
        ],
29
        'cod_ccus' => [
30
            'type'     => 'string',
31
            'regex'    => '^[A-Za-z0-9]$',
32
            'required' => false,
33
            'info'     => 'Código do centro de custos.',
34
            'format'   => ''
35
        ],
36
        'vl_dc'     => [
37
            'type'     => 'numeric',
38
            'regex'    => '^\d+(\.\d*)?|\.\d+$',
39
            'required' => true,
40
            'info'     => 'Valor da partida.',
41
            'format'   => '19v2'
42
        ],
43
        'ind_dc' => [
44
            'type'     => 'string',
45
            'regex'    => '^(D|C)$',
46
            'required' => true,
47
            'info'     => 'Indicador da situação do saldo final: D - Devedor; C - Credor.',
48
            'format'   => ''
49
        ],
50
        'num_arq' => [
51
            'type'     => 'string',
52
            'regex'    => '^[0-9]$',
53
            'required' => false,
54
            'info'     => 'Número, Código ou caminho de localização dos documentos arquivados.',
55
            'format'   => ''
56
        ],
57
        'cod_hist_pad' => [
58
            'type'     => 'string',
59
            'regex'    => '^([0-9])*$',
60
            'required' => false,
61
            'info'     => 'Código do histórico padronizado, conforme tabela I075.',
62
            'format'   => ''
63
        ],
64
        'hist' => [
65
            'type'     => 'string',
66
            'regex'    => '^[A-Za-z0-9]{65535}$',
67
            'required' => false,
68
            'info'     => 'Código do histórico padronizado, conforme tabela I075.',
69
            'format'   => ''
70
        ],
71
        'cod_part' => [
72
            'type'     => 'string',
73
            'regex'    => '^[A-Za-z0-9]$',
74
            'required' => false,
75
            'info'     => 'Código do histórico padronizado, conforme tabela I075.',
76
            'format'   => ''
77
        ],
78
        'vl_dc_mf'     => [
79
            'type'     => 'string',
80
            'regex'    => '^[0-9]{19}$',
81
            'required' => false,
82
            'info'     => 'Valor da partida em moeda funcional, convertido para reais.',
83
            'format'   => ''
84
        ],
85
        'ind_dc_mf' => [
86
            'type'     => 'string',
87
            'regex'    => '^(D|C)$',
88
            'required' => false,
89
            'info'     => 'Indicador da natureza da partida em moeda funcional: D - Devedor; C - Credor.',
90
            'format'   => ''
91
        ]
92
    ];
93
94
    /**
95
     * Constructor
96
     * @param \stdClass $std
97
     */
98
    public function __construct(\stdClass $std)
99
    {
100
        parent::__construct(self::REG);
101
        $this->std = $this->standarize($std);
102
        $this->postValidation();
103
    }
104
}
105

src/Elements/J932.php 1 location

@@ 15-105 (lines=91) @@
12
 *
13
 * OBS.: Fazer verificacao de tamanho do campo ident_cpf_cnpj_t quando preencher os dados;
14
 */
15
class J932 extends Element implements ElementInterface
16
{
17
    const REG = 'J932';
18
    const LEVEL = 3;
19
    const PARENT = '';
20
21
    protected $parameters = [
22
        'ident_nom_t' => [
23
            'type'     => 'string',
24
            'regex'    => '^[A-Za-z]$',
25
            'required' => true,
26
            'info'     => 'Nome do signatário.',
27
            'format'   => ''
28
        ],
29
        'ident_cpf_cnpj_t' => [
30
            'type'     => 'numeric',
31
            'regex'    => '^[0-9]$',
32
            'required' => true,
33
            'info'     => 'CPF ou CNPJ',
34
            'format'   => ''
35
        ],
36
        'ident_qualif_t' => [
37
            'type'     => 'string',
38
            'regex'    => '^[A-Za-z0-9]$',
39
            'required' => true,
40
            'info'     => 'Qualificação do assinante, conforme tabela.',
41
            'format'   => ''
42
        ],
43
        'cod_assin_t' => [
44
            'type'     => 'string',
45
            'regex'    => '^[A-Za-z0-9]{3}$',
46
            'required' => true,
47
            'info'     => 'Código de qualificação do assinante, conforme tabela.',
48
            'format'   => ''
49
        ],
50
        'ind_crc_t' => [
51
            'type'     => 'string',
52
            'regex'    => '^[A-Za-z0-9]$',
53
            'required' => false,
54
            'info'     => 'Número de inscrição do contabilista no Conselho Regional de Contabilidade.',
55
            'format'   => ''
56
        ],
57
        'email_t' => [
58
            'type'     => 'string',
59
            'regex'    => '^[A-Za-z0-9]{60}$',
60
            'required' => false,
61
            'info'     => 'Email do signatário.',
62
            'format'   => ''
63
        ],
64
        'fone_t' => [
65
            'type'     => 'string',
66
            'regex'    => '^[0-9]{14}$',
67
            'required' => false,
68
            'info'     => 'Telefone do signatário.',
69
            'format'   => ''
70
        ],
71
        'uf_crc_t' => [
72
            'type'     => 'string',
73
            'regex'    => '^[A-Z]{2}$',
74
            'required' => false,
75
            'info'     => 'Indicação da unidade da federação que expediu o CRC.',
76
            'format'   => ''
77
        ],
78
        'num_seq_crc_t' => [
79
            'type'     => 'string',
80
            'regex'    => '^[0-9]$',
81
            'required' => false,
82
            'info'     => 'Número da Certidão de Regularidade Profissional do Contador no '
83
                . 'seguinte formato: UF/ano/número',
84
            'format'   => ''
85
        ],
86
        'dt_crc_t'     => [
87
            'type'     => 'string',
88
            'regex'    => '^(0[1-9]|[1-2][0-9]|31(?!(?:0[2469]|11))|30(?!02))(0[1-9]|1[0-2])([12]\d{3})$',
89
            'required' => false,
90
            'info'     => 'Data de validade da Certidão de Regularidade Profissional do Contador.',
91
            'format'   => ''
92
        ]
93
    ];
94
95
    /**
96
     * Constructor
97
     * @param \stdClass $std
98
     */
99
    public function __construct(\stdClass $std)
100
    {
101
        parent::__construct(self::REG);
102
        $this->std = $this->standarize($std);
103
        $this->postValidation();
104
    }
105
}
106