Retencion::validateInput()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * MÓDULO DE EMISIÓN ELECTRÓNICA F72X
5
 * UBL 2.1
6
 * Version 1.0
7
 * 
8
 * Copyright 2019, Jaime Cruz
9
 */
10
11
namespace F72X\Sunat\Document;
12
13
class Retencion extends AbstractPerRet {
14
15
    protected $isRetencion = true;
16
    protected $seriesPrefix = 'R';
17
    protected $regimeCatNumber = 23;
18
    protected $xmlTplName = 'Retention.xml';
19
    public function validateInput(array $inputData) {
20
        
21
    }
22
23
}
24