You are here

public static function Braintree_Xml::buildArrayFromXml in Commerce Braintree 7

Parameters

string $xml:

Return value

array

17 calls to Braintree_Xml::buildArrayFromXml()
Braintree_Http::get in braintree_php/lib/Braintree/Http.php
Braintree_Http::post in braintree_php/lib/Braintree/Http.php
Braintree_Http::put in braintree_php/lib/Braintree/Http.php
Braintree_WebhookNotification::parse in braintree_php/lib/Braintree/WebhookNotification.php
Braintree_Xml_ParserTest::testBuildsArray in braintree_php/tests/unit/Xml_ParserTest.php

... See full list

File

braintree_php/lib/Braintree/Xml.php, line 29

Class

Braintree_Xml
superclass for Braintree XML parsing and generation

Code

public static function buildArrayFromXml($xml) {
  return Braintree_Xml_Parser::arrayFromXml($xml);
}