Passed
Push — master ( 2c03c7...ba7534 )
by Antônio
01:37
created

Retornos::getDataRecebimento()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace OBRSDK\Entidades;
4
5
/**
6
 * @author Antonio
7
 * @since 19/10/2017
8
 */
9
class Retornos extends \OBRSDK\Entidades\Abstratos\AEntidadePropriedades {
10
11
    ///
12
    /// atributos de resposta
13
    ///
14
    protected $retorno_id;
15
    protected $banco;
16
    protected $data_recebimento;
17
18
    /**
19
     *
20
     * @var @var \OBRSDK\Entidades\Boletos[]
21
     */
0 ignored issues
show
Documentation Bug introduced by
The doc comment @var at position 0 could not be parsed: Unknown type name '@var' at position 0 in @var.
Loading history...
22
    protected $boletos;
23
24
    public function getRetornoId() {
25
        return $this->retorno_id;
26
    }
27
28
    /**
29
     * Banco gerador do arquivo de retorno
30
     * @return string
31
     */
32
    public function getBanco() {
33
        return $this->banco;
34
    }
35
36
    /**
37
     * Data em que a API recebeu o retorno
38
     * @return string
39
     */
40
    public function getDataRecebimento() {
41
        return $this->data_recebimento;
42
    }
43
44
    /**
45
     * 
46
     * @return \OBRSDK\Entidades\Boletos[]
47
     */
48
    public function getBoletos() {
49
        return $this->boletos;
50
    }
51
52
}
53