Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/braintree/braintree_php/lib/Braintree/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/braintree/braintree_php/lib/Braintree/Xml.php

<?php
namespace Braintree;

/**
 * Braintree Xml parser and generator
 * superclass for Braintree XML parsing and generation
 */
class Xml
{
    /**
     * @ignore
     */
    protected function  __construct()
    {

    }

    /**
     *
     * @param string $xml
     * @return array
     */
    public static function buildArrayFromXml($xml)
    {
        return Xml\Parser::arrayFromXml($xml);
    }

    /**
     *
     * @param array $array
     * @return string
     */
    public static function buildXmlFromArray($array)
    {
        return Xml\Generator::arrayToXml($array);
    }
}