Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | 1 | public function __construct( |
|
22 | $amount, |
||
23 | $currency, |
||
24 | $recipientIdentifier, |
||
25 | array $extraOptions = [] |
||
26 | ) { |
||
27 | 1 | $this->amount = $amount; |
|
28 | 1 | $this->currency = $currency; |
|
29 | 1 | $this->recipientIdentifier = $recipientIdentifier; |
|
30 | 1 | $this->extraOptions = new ParamsBag($extraOptions); |
|
31 | } |
||
68 |