Completed
Pull Request — master (#42)
by
unknown
03:05
created
src/MenuItem.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -326,7 +326,7 @@
 block discarded – undo
326 326
             return route($this->route[0], $this->route[1]);
327 327
         }
328 328
         
329
-        if(empty($this->url))
329
+        if (empty($this->url))
330 330
             return url("/#");
331 331
         
332 332
         return url($this->url);
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -326,8 +326,9 @@
 block discarded – undo
326 326
             return route($this->route[0], $this->route[1]);
327 327
         }
328 328
         
329
-        if(empty($this->url))
330
-            return url("/#");
329
+        if(empty($this->url)) {
330
+                    return url("/#");
331
+        }
331 332
         
332 333
         return url($this->url);
333 334
     }
Please login to merge, or discard this patch.