Caixa   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getCodigoCedente() 0 2 1
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 Caixa
13
 *
14
 * @author Antonio
15
 */
16
class Caixa extends Abstratos\ABanco {
17
18
    public $codigo_cedente;
19
20
    public function getCodigoCedente() {
21
        return $this->codigo_cedente;
22
    }
23
24
}
25