| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class GatewaysResponseMessage { |
||
| 19 | /** |
||
| 20 | * Gateways. |
||
| 21 | * |
||
| 22 | * @var array |
||
| 23 | */ |
||
| 24 | public $gateways; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Parse the specified XML element into an iDEAL transaction object |
||
| 28 | * |
||
| 29 | * @param SimpleXMLElement $xml |
||
| 30 | * |
||
| 31 | * @return GatewaysResponseMessage |
||
| 32 | */ |
||
| 33 | 1 | public static function parse( SimpleXMLElement $xml ) { |
|
| 48 |