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

IntermediarySwift::asDom()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

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