Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
26 | 2 | public function __construct($instructionId, $endToEndId, Money\CHF $amount, $creditorName, PostalAddressInterface $creditorAddress, PostalAccount $creditorAccount) |
|
27 | { |
||
28 | 2 | parent::__construct($instructionId, $endToEndId, $amount, $creditorName, $creditorAddress); |
|
29 | |||
30 | 2 | $this->creditorAccount = $creditorAccount; |
|
31 | 2 | } |
|
32 | |||
53 |