Completed
Push — master ( 71a5fb...14eaec )
by Nicolas
13s
created
src/Presenters/Foundation/ZurbMenuPresenter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function getMenuWithoutDropdownWrapper($item)
30 30
     {
31
-        return '<li'.$this->getActiveState($item).'><a href="'. $item->getUrl() .'">'.$item->title.'</a></li>';
31
+        return '<li' . $this->getActiveState($item) . '><a href="' . $item->getUrl() . '">' . $item->title . '</a></li>';
32 32
     }
33 33
 
34 34
     /**
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
     public function getMenuWithDropDownWrapper($item)
54 54
     {
55 55
         return '<li class="dropdown dropdown-primary">
56
-                    <a class="dropdown-toggle" href="#">'.$item->title.'</a>
56
+                    <a class="dropdown-toggle" href="#">'.$item->title . '</a>
57 57
                     <ul class="menu">
58
-                      '.$this->getChildMenuItems($item).'
58
+                      '.$this->getChildMenuItems($item) . '
59 59
                     </ul>
60 60
                 </li>' . PHP_EOL;
61 61
     }
Please login to merge, or discard this patch.