X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FXML.php;h=daaf0a6772599eaecfc995132f72e7dc51db323d;hb=c364957e71dd780bf53dc65e0cf4ea10187b4417;hp=0dd57def353fc74859729009315ce724819d4f9a;hpb=7a88e045914e81a53e30af54aee578baa9ff0220;p=civicrm-core.git diff --git a/CRM/Utils/XML.php b/CRM/Utils/XML.php index 0dd57def35..daaf0a6772 100644 --- a/CRM/Utils/XML.php +++ b/CRM/Utils/XML.php @@ -40,8 +40,10 @@ class CRM_Utils_XML { * (0 => SimpleXMLElement|FALSE, 1 => errorMessage|FALSE) */ public static function parseFile($file) { - $xml = FALSE; // SimpleXMLElement - $error = FALSE; // string + // SimpleXMLElement + $xml = FALSE; + // string + $error = FALSE; if (!file_exists($file)) { $error = 'File ' . $file . ' does not exist.'; @@ -60,7 +62,7 @@ class CRM_Utils_XML { libxml_use_internal_errors($oldLibXMLErrors); } - return array($xml, $error); + return [$xml, $error]; } /** @@ -72,8 +74,10 @@ class CRM_Utils_XML { * (0 => SimpleXMLElement|FALSE, 1 => errorMessage|FALSE) */ public static function parseString($string) { - $xml = FALSE; // SimpleXMLElement - $error = FALSE; // string + // SimpleXMLElement + $xml = FALSE; + // string + $error = FALSE; $oldLibXMLErrors = libxml_use_internal_errors(); libxml_use_internal_errors(TRUE); @@ -87,7 +91,7 @@ class CRM_Utils_XML { libxml_use_internal_errors($oldLibXMLErrors); - return array($xml, $error); + return [$xml, $error]; } /** @@ -96,14 +100,14 @@ class CRM_Utils_XML { * @return string */ protected static function formatErrors($errors) { - $messages = array(); + $messages = []; foreach ($errors as $error) { if ($error->level != LIBXML_ERR_ERROR && $error->level != LIBXML_ERR_FATAL) { continue; } - $parts = array(); + $parts = []; if ($error->file) { $parts[] = "File=$error->file"; } @@ -126,7 +130,7 @@ class CRM_Utils_XML { * @return array */ public static function xmlObjToArray($obj) { - $arr = array(); + $arr = []; if (is_object($obj)) { $obj = get_object_vars($obj); }