Passed
Push — master ( 9c95d4...eee053 )
by Joe Nilson
03:19
created

Cliente::getCodubtipodoc()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Copyright (C) 2020 Joe Nilson <joenilson at gmail dot com>
4
 * 
5
 * fsRepublicaDominicana is free software: you can redistribute it and/or modify
6
 * it under the terms of the GNU Lesser General Public License as published by
7
 * the Free Software Foundation, either version 3 of the License, or
8
 * (at your option) any later version.
9
 * 
10
 * fsRepublicaDominicana is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU Lesser General Public License for more details.
14
 * 
15
 * You should have received a copy of the GNU Lesser General Public License
16
 * along with fsRepublicaDominicana. If not, see <http://www.gnu.org/licenses/>.
17
 */
18
19
 namespace FacturaScripts\Plugins\fsRepublicaDominicana\Extension\Model;
20
21
 class Cliente 
22
 {
23
    /**
24
    * Type of NCF to generate to the customer
25
    *
26
    * @var string
27
    */
28
    public $codsubtipodoc;
29
    /**
30
     * Payment type based on DGII table
31
     * @var string
32
     */
33
    public $ncftipopago;
34
35
 }
36