From: Adam Magness <adam.magness@gmail.com>
Date: Fri, 10 Nov 2017 05:34:31 +0000 (-0500)
Subject: Spelling
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0226aa1f1504c3f038264659cfa827ef4f6be185;p=friendica.git

Spelling

spelling correction for simplexmlelement
---

diff --git a/src/Util/Xml.php b/src/Util/Xml.php
index 8be1478edb..7315567d83 100644
--- a/src/Util/Xml.php
+++ b/src/Util/Xml.php
@@ -1,12 +1,12 @@
 <?php
 
 /**
- * @file xrc/Util/Xml.php
+ * @file src/Util/Xml.php
  */
 namespace Friendica\Util;
 
 use DomXPath;
-use SimpleXmMLElement;
+use SimpleXMLElement;
 
 /**
  * @brief This class contain methods to work with XML data
@@ -24,8 +24,8 @@ class Xml
 	 *
 	 * @return string The created XML
 	 */
-	public static function from_array($array, &$xml, $remove_header = false, $namespaces = array(), $root = true) {
-
+	public static function from_array($array, &$xml, $remove_header = false, $namespaces = array(), $root = true)
+	{
 		if ($root) {
 			foreach ($array as $key => $value) {
 				foreach ($namespaces as $nskey => $nsvalue) {