Barcode   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getBarcode() 0 5 1
1
<?php
2
3
namespace CbCaio\Boletos\Generators;
4
5
use CbCaio\Boletos\Generators\Base\BarcodeGenerator;
6
7
class Barcode extends BarcodeGenerator
8
{
9
    public function getBarcode($code, $type)
10
    {
11
        $barcodeData = $this->getBarcodeData($code, $type);
12
        return $barcodeData;
13
    }
14
}