Test Failed
Push — master ( 74b1ff...1077f8 )
by Deel
03:08
created
view/anax/v2/layout/dbwebb_se.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@
 block discarded – undo
211 211
 $sidebarLeft  = regionHasContent("sidebar-left");
212 212
 $sidebarRight = regionHasContent("sidebar-right");
213 213
 $class = "";
214
-$class .= $sidebarLeft  ? "has-sidebar-left "  : "";
214
+$class .= $sidebarLeft ? "has-sidebar-left " : "";
215 215
 $class .= $sidebarRight ? "has-sidebar-right " : "";
216 216
 $class .= empty($class) ? "" : "has-sidebar";
217 217
 ?>
Please login to merge, or discard this patch.
view/anax/v2/block/default.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 }
22 22
 
23 23
 // Prepare title
24
-$title = isset($title) && !empty($title)? $title : null;
24
+$title = isset($title) && !empty($title) ? $title : null;
25 25
 $header = isset($header) ? $header : $title;
26 26
 
27 27
 // Prepare content into text
Please login to merge, or discard this patch.
src/Navigation/Navbar.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
         // Create the ul li menu from the array, use an anonomous recursive
86 86
         // function that returns an array of values.
87
-        $createMenu = function (
87
+        $createMenu = function(
88 88
             $items,
89 89
             $ulId = null,
90 90
             $ulClass = null
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
                 }
129 129
 
130 130
                 // Is there a class set for this item, then use it
131
-                $class = isset($item["class"]) && ! is_null($item["class"])
131
+                $class = isset($item["class"]) && !is_null($item["class"])
132 132
                     ? $item["class"]
133 133
                     : null;
134 134
 
Please login to merge, or discard this patch.
view/anax/v2/dev/session_destroy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,5 +25,5 @@
 block discarded – undo
25 25
 <pre><?= var_dump($session) ?></pre>
26 26
 
27 27
 <p>
28
-    <a href="<?= url($mount."session") ?>">Back to session<a>
28
+    <a href="<?= url($mount . "session") ?>">Back to session<a>
29 29
 </p>
Please login to merge, or discard this patch.