Completed
Push — master ( 7fca5c...dc62d7 )
by Aleksandar
06:09 queued 01:53
created
src/SimpleArrayLibrary.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,9 @@
 block discarded – undo
133 133
             if (is_array($element)) {
134 134
                 $depth += self::countMaxDepth($element);
135 135
             }
136
-            if ($depth > $maxDepth) $maxDepth = $depth;
136
+            if ($depth > $maxDepth) {
137
+                $maxDepth = $depth;
138
+            }
137 139
         }
138 140
 
139 141
         return $maxDepth;
Please login to merge, or discard this patch.