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

IbanBankAccount::setIban()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 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