| Total Complexity | 5 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 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 \OBRSDK\Entidades\Boletos[] |
||
| 21 | */ |
||
| 22 | protected $boletos; |
||
| 23 | |||
| 24 | public function __construct() { |
||
| 25 | $this->boletos = [new Boletos()]; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getRetornoId() { |
||
| 29 | return $this->retorno_id; |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Banco gerador do arquivo de retorno |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getBanco() { |
||
| 37 | return $this->banco; |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Data em que a API recebeu o retorno |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function getDataRecebimento() { |
||
| 45 | return $this->data_recebimento; |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * |
||
| 50 | * @return \OBRSDK\Entidades\Boletos[] |
||
| 51 | */ |
||
| 52 | public function getBoletos() { |
||
| 54 | } |
||
| 55 | |||
| 56 | } |
||
| 57 |