Completed
Push — master ( a7894a...d2af4c )
by Thiago Augustus de
02:08
created
NoXMLSpace.class.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,16 +26,16 @@
 block discarded – undo
26 26
 	 * @return xml
27 27
 	 * @access public
28 28
 	 */
29
-	public static function noSpace( $xml = null )
29
+	public static function noSpace($xml = null)
30 30
 	{
31 31
 
32
-		if ( empty( $xml ) || is_null( $xml ) ) return false;
32
+		if (empty($xml) || is_null($xml)) return false;
33 33
 
34
-		foreach ( $xml as $key => $value ) {
35
-			if ( sizeof( $value ) > 1 ) {
36
-				noSpace( $value ); // Get next node
34
+		foreach ($xml as $key => $value) {
35
+			if (sizeof($value) > 1) {
36
+				noSpace($value); // Get next node
37 37
 			} else {
38
-				$xml->$key = trim( $value );
38
+				$xml->$key = trim($value);
39 39
 			}
40 40
 		}
41 41
 		return $xml;
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,9 @@
 block discarded – undo
29 29
 	public static function noSpace( $xml = null )
30 30
 	{
31 31
 
32
-		if ( empty( $xml ) || is_null( $xml ) ) return false;
32
+		if ( empty( $xml ) || is_null( $xml ) ) {
33
+			return false;
34
+		}
33 35
 
34 36
 		foreach ( $xml as $key => $value ) {
35 37
 			if ( sizeof( $value ) > 1 ) {
Please login to merge, or discard this patch.