Passed
Push — master ( a6828c...85a041 )
by Carl
03:19
created

IbanBankAccount   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 4
lcom 0
cbo 1
dl 0
loc 38
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getIban() 0 4 1
A setIban() 0 4 1
A getBic() 0 4 1
A setBic() 0 4 1
1
<?php
2
/**
3
 * Created by Carl Owens ([email protected])
4
 * Company: PartFire Ltd (www.partfire.co.uk)
5
 * Copyright © 2017 PartFire Ltd. All rights reserved.
6
 *
7
 * User:    Carl Owens
8
 * Date:    20/01/2017
9
 * Time:    13:03
10
 * File:    IbanBankAccount.php
11
 **/
12
13
namespace PartFire\MangoPayBundle\Models\DTOs;
14
15
class IbanBankAccount extends AbstractBankAccount
16
{
17
    private $iban;
18
19
    private $bic;
20
21
    /**
22
     * @return mixed
23
     */
24
    public function getIban()
25
    {
26
        return $this->iban;
27
    }
28
29
    /**
30
     * @param mixed $iban
31
     */
32
    public function setIban($iban)
33
    {
34
        $this->iban = $iban;
35
    }
36
37
    /**
38
     * @return mixed
39
     */
40
    public function getBic()
41
    {
42
        return $this->bic;
43
    }
44
45
    /**
46
     * @param mixed $bic
47
     */
48
    public function setBic($bic)
49
    {
50
        $this->bic = $bic;
51
    }
52
}
53