Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
41 | public function processMandate(XmlMandate $xmlMandate): XmlMandate |
||
42 | { |
||
43 | if (isset($xmlMandate->attributes[$this->attributeName])) { |
||
44 | $xmlMandate->donationAmount = $this->moneyParser->parse( |
||
45 | $xmlMandate->attributes[$this->attributeName], |
||
46 | 'SEK' |
||
47 | ); |
||
48 | } |
||
49 | |||
50 | return $xmlMandate; |
||
51 | } |
||
53 |