Passed
Push — master ( a68859...a8bd15 )
by Antônio
01:31
created

Beneficiario::getNomeBeneficiario()   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
/*
4
 * To change this license header, choose License Headers in Project Properties.
5
 * To change this template file, choose Tools | Templates
6
 * and open the template in the editor.
7
 */
8
9
namespace OBRSDK\Entidades;
10
11
/**
12
 * Description of Beneficiario
13
 *
14
 * @author Antonio
15
 */
16
class Beneficiario extends Abstratos\AEntidadePropriedades {
17
18
    ///
19
    /// ATRIBUTOS OBRIGATORIOS
20
    ///
21
    public $nosso_numero_inicial;
22
    public $agencia;
23
    public $agencia_digito;
24
    public $conta;
25
    public $conta_digito;
26
    public $nome_beneficiario;
27
    public $documento_beneficiario;
28
    public $cep_beneficiario;
29
    public $uf_beneficiario;
30
    public $cidade_beneficiario;
31
    public $bairro_beneficiario;
32
    public $endereco_beneficiario;
33
    public $endereco_numero_beneficiario;
34
35
    public function getNossoNumeroInicial() {
36
        return $this->nosso_numero_inicial;
37
    }
38
39
    public function getAgencia() {
40
        return $this->agencia;
41
    }
42
43
    public function getAgenciaDigito() {
44
        return $this->agencia_digito;
45
    }
46
47
    public function getConta() {
48
        return $this->conta;
49
    }
50
51
    public function getContaDigito() {
52
        return $this->conta_digito;
53
    }
54
55
    public function getNomeBeneficiario() {
56
        return $this->nome_beneficiario;
57
    }
58
59
    public function getDocumentoBeneficiario() {
60
        return $this->documento_beneficiario;
61
    }
62
63
    public function getCepBeneficiario() {
64
        return $this->cep_beneficiario;
65
    }
66
67
    public function getUfBeneficiario() {
68
        return $this->uf_beneficiario;
69
    }
70
71
    public function getCidadeBeneficiario() {
72
        return $this->cidade_beneficiario;
73
    }
74
75
    public function getBairroBeneficiario() {
76
        return $this->bairro_beneficiario;
77
    }
78
79
    public function getEnderecoBeneficiario() {
80
        return $this->endereco_beneficiario;
81
    }
82
83
    public function getEnderecoNumeroBeneficiario() {
84
        return $this->endereco_numero_beneficiario;
85
    }
86
87
}
88