| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function __construct(SimpleXMLElement $xml) |
||
| 26 | { |
||
| 27 | $this->type = (string) $xml->TRNTYPE; |
||
| 28 | $this->document = (string) $xml->FITID; |
||
| 29 | $this->description = (string) $xml->MEMO; |
||
| 30 | $this->amount = (float) str_replace(',', '.', $xml->TRNAMT); |
||
| 31 | $this->dueDate = new DateTime(substr($xml->DTPOSTED, 0, 8)); |
||
| 32 | } |
||
| 33 | |||
| 59 |