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