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

Retornos   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 23
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getBoletos() 0 2 1
A getRetornoId() 0 2 1
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