Passed
Push — master ( a8bd15...2c03c7 )
by Antônio
02:13
created

Retornos::getRetornoId()   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
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
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
16
    /**
17
     *
18
     * @var @var \OBRSDK\Entidades\Boletos[]
19
     */
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...
20
    protected $boletos;
21
22
    public function getRetornoId() {
23
        return $this->retorno_id;
24
    }
25
26
    /**
27
     * 
28
     * @return \OBRSDK\Entidades\Boletos[]
29
     */
30
    public function getBoletos() {
31
        return $this->boletos;
32
    }
33
34
}
35