Completed
Pull Request — master (#6)
by
unknown
03:15
created

IntermediarySwift   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 60%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 1
cbo 1
dl 0
loc 21
ccs 3
cts 5
cp 0.6
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A asDom() 0 4 1
1
<?php
2
namespace Z38\SwissPayment;
3
4
class IntermediarySwift implements FinancialInstitutionInterface
5
{
6
    /**
7
     * @var BIC
8
     */
9
    private $bic;
10
11
    /**
12
     * IntermediarySwift constructor.
13
     * @param BIC $bic
14
     */
15 1
    public function __construct(BIC $bic)
16
    {
17 1
        $this->bic = $bic;
18 1
    }
19
20
    public function asDom(\DOMDocument $doc)
21
    {
22
        return $this->bic->asDom($doc);
23
    }
24
}
25