Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function __construct(Email $recipientEmail, Money $amount, Description $description) |
||
28 | { |
||
29 | $this->payload = [ |
||
30 | 'bnf_email' => strval($recipientEmail), |
||
31 | 'currency' => strval($amount->getCurrency()), |
||
32 | 'amount' => $this->formatToFloat($amount), |
||
33 | 'subject' => $description->getSubject(), |
||
34 | 'note' => $description->getText(), |
||
35 | ]; |
||
52 |