ABanco::getNomeBancoJson()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 4
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\Abstratos;
10
11
/**
12
 * Description of ABanco
13
 *
14
 * @author Antonio
15
 */
16
abstract class ABanco extends AEntidadePropriedades {
17
18
    public function getNomeBancoJson() {
19
        $called = explode("\\", get_called_class());
20
        $className = end($called);
21
        return $this->pascalCaseParaUnderscore($className);
22
    }
23
24
}
25