Format::_from_xml PHP Method

_from_xml() protected method

protected _from_xml ( string $data ) : array
$data string XML string
return array XML element object; otherwise, empty array
    protected function _from_xml($data)
    {
        return $data ? (array) simplexml_load_string($data, 'SimpleXMLElement', LIBXML_NOCDATA) : [];
    }