Completed
Pull Request — master (#17)
by Nauris
03:58 queued 02:21
created
src/Presenters/Bootstrap/NavbarPresenter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function getMenuWithoutDropdownWrapper($item)
29 29
     {
30
-        if($item->auth && auth()->guest()) {
30
+        if ($item->auth && auth()->guest()) {
31 31
             return null;
32 32
         }
33 33
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public function getMenuWithDropDownWrapper($item)
78 78
     {
79
-        if($item->auth && auth()->guest()) {
79
+        if ($item->auth && auth()->guest()) {
80 80
             return null;
81 81
         }
82 82
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public function getMultiLevelDropdownWrapper($item)
105 105
     {
106
-        if($item->auth && auth()->guest()) {
106
+        if ($item->auth && auth()->guest()) {
107 107
             return null;
108 108
         }
109 109
 
Please login to merge, or discard this patch.