Completed
Push — master ( 4ff442...f4393a )
by Hannes
04:24 queued 02:56
created

BankgiroFactory   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 2
c 1
b 0
f 1
lcom 0
cbo 2
dl 20
loc 20
ccs 6
cts 6
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 5 5 1
A createAccount() 4 4 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace byrokrat\banking;
4
5
/**
6
 * Plusgiroi account number factory
7
 */
8 View Code Duplication
class BankgiroFactory extends AccountFactory implements BankNames
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
9
{
10 1
    public function __construct()
11
    {
12 1
        $formats = (new Formats)->createFormats();
13 1
        parent::__construct([self::FORMAT_BANKGIRO => $formats[self::FORMAT_BANKGIRO]]);
14 1
    }
15
16
    /**
17
     * Create bankgiro account object using number
18
     *
19
     * @param  string $number
20
     * @return Bankgiro
21
     * @throws Exception\UnableToCreateAccountException If unable to create
22
     */
23 1
    public function createAccount($number)
24
    {
25 1
        return parent::createAccount($number);
26
    }
27
}
28