BancoDoBrasil::getConvenio()   A
last analyzed

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 BancoDoBrasil
13
 *
14
 * @author Antonio
15
 */
16
class BancoDoBrasil extends Abstratos\ABanco {
17
18
    ///
19
    /// ATRIBUTOS OBRIGATORIOS
20
    ///
21
    public $convenio;
22
    public $carteira;
23
    public $carteira_variacao;
24
    public $carteira_modalidade;
25
    
26
    public function getConvenio() {
27
        return $this->convenio;
28
    }
29
30
    public function getCarteira() {
31
        return $this->carteira;
32
    }
33
34
    public function getCarteira_variacao() {
35
        return $this->carteira_variacao;
36
    }
37
38
    public function getCarteiraModalidade() {
39
        return $this->carteira_modalidade;
40
    }
41
42
43
44
}
45