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