DadosTitulo   A
last analyzed

Complexity

Total Complexity 12

Size/Duplication

Total Lines 142
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 0 Features 1
Metric Value
wmc 12
c 2
b 0
f 1
lcom 0
cbo 0
dl 0
loc 142
rs 10

12 Methods

Rating   Name   Duplication   Size   Complexity  
A getAcrescimos() 0 4 1
A setAcrescimos() 0 5 1
A getValorAbatimento() 0 4 1
A setValorAbatimento() 0 5 1
A getValorDesconto() 0 4 1
A setValorDesconto() 0 5 1
A getValorIOF() 0 4 1
A setValorIOF() 0 5 1
A getValorLiquido() 0 4 1
A setValorLiquido() 0 5 1
A getValorPago() 0 4 1
A setValorPago() 0 5 1
1
<?php
2
3
namespace Umbrella\Ya\RetornoBoleto\Cnab\Cnab240;
4
5
class DadosTitulo
6
{
7
    /**
8
     * @var float
9
     */
10
    protected $acrescimos;
11
12
    /**
13
     * @var float
14
     */
15
    protected $valorDesconto;
16
17
    /**
18
     * @var float
19
     */
20
    protected $valorAbatimento;
21
22
    /**
23
     * @var float
24
     */
25
    protected $valorIOF;
26
27
    /**
28
     * @var float
29
     */
30
    protected $valorPago;
31
32
    /**
33
     * @var float
34
     */
35
    protected $valorLiquido;
36
37
    /**
38
     * @return float
39
     */
40
    public function getAcrescimos()
41
    {
42
        return $this->acrescimos;
43
    }
44
45
    /**
46
     * @param float $acrescimos
47
     * @return $this
48
     */
49
    public function setAcrescimos($acrescimos)
50
    {
51
        $this->acrescimos = $acrescimos;
52
        return $this;
53
    }
54
55
    /**
56
     * @return float
57
     */
58
    public function getValorAbatimento()
59
    {
60
        return $this->valorAbatimento;
61
    }
62
63
    /**
64
     * @param float $valorAbatimento
65
     * @return $this
66
     */
67
    public function setValorAbatimento($valorAbatimento)
68
    {
69
        $this->valorAbatimento = $valorAbatimento;
70
        return $this;
71
    }
72
73
    /**
74
     * @return float
75
     */
76
    public function getValorDesconto()
77
    {
78
        return $this->valorDesconto;
79
    }
80
81
    /**
82
     * @param float $valorDesconto
83
     * @return $this
84
     */
85
    public function setValorDesconto($valorDesconto)
86
    {
87
        $this->valorDesconto = $valorDesconto;
88
        return $this;
89
    }
90
91
    /**
92
     * @return float
93
     */
94
    public function getValorIOF()
95
    {
96
        return $this->valorIOF;
97
    }
98
99
    /**
100
     * @param float $valorIOF
101
     * @return $this
102
     */
103
    public function setValorIOF($valorIOF)
104
    {
105
        $this->valorIOF = $valorIOF;
106
        return $this;
107
    }
108
109
    /**
110
     * @return float
111
     */
112
    public function getValorLiquido()
113
    {
114
        return $this->valorLiquido;
115
    }
116
117
    /**
118
     * @param float $valorLiquido
119
     * @return $this
120
     */
121
    public function setValorLiquido($valorLiquido)
122
    {
123
        $this->valorLiquido = $valorLiquido;
124
        return $this;
125
    }
126
127
    /**
128
     * @return float
129
     */
130
    public function getValorPago()
131
    {
132
        return $this->valorPago;
133
    }
134
135
    /**
136
     * @param float $valorPago
137
     * @return $this
138
     */
139
    public function setValorPago($valorPago)
140
    {
141
        $this->valorPago = $valorPago;
142
        return $this;
143
    }
144
145
146
}
147