Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
26 | class TransactionParser implements Parser { |
||
27 | /** |
||
28 | * Parse the specified XML element into an iDEAL transaction object |
||
29 | * |
||
30 | * @param SimpleXMLElement $xml XML. |
||
31 | * @param Transaction $transaction Transaction. |
||
32 | * |
||
33 | * @return Transaction |
||
34 | */ |
||
35 | public static function parse( SimpleXMLElement $xml, Transaction $transaction = null ) { |
||
50 |