Test Failed
Push — master ( 4527f5...6e7815 )
by Ylva
21:41 queued 04:42
created
a/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
             $description = '';
94 94
         }
95 95
 
96
-        $refers = (string) $this->refers;
96
+        $refers = (string)$this->refers;
97 97
 
98 98
         return $refers . ($description !== '' ? ($refers !== '' ? ' ' : '') . $description : '');
99 99
     }
Please login to merge, or discard this patch.
a/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
             $variableName = '';
112 112
         }
113 113
 
114
-        $type = (string) $this->type;
114
+        $type = (string)$this->type;
115 115
 
116 116
         return $type
117 117
             . ($variableName !== '' ? ($type !== '' ? ' ' : '') . $variableName : '')
Please login to merge, or discard this patch.
vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
             $variableName = '';
112 112
         }
113 113
 
114
-        $type = (string) $this->type;
114
+        $type = (string)$this->type;
115 115
 
116 116
         return $type
117 117
             . ($variableName !== '' ? ($type !== '' ? ' ' : '') . $variableName : '')
Please login to merge, or discard this patch.
a/vendor/anax/router/test/config/router_mode_development.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
             "info" => "Just say hi.",
14 14
             "method" => null,
15 15
             "path" => "",
16
-            "handler" => function () {
16
+            "handler" => function() {
17 17
                 return ["Anax: Just saying Hi!", 200];
18 18
             },
19 19
         ],
Please login to merge, or discard this patch.
a/vendor/anax/router/test/config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
 /**
11 11
  * Set the error reporting.
12 12
  */
13
-error_reporting(-1);              // Report all type of errors
14
-ini_set('display_errors', 1);     // Display all errors
13
+error_reporting(-1); // Report all type of errors
14
+ini_set('display_errors', 1); // Display all errors
15 15
 
16 16
 
17 17
 
Please login to merge, or discard this patch.
a/vendor/anax/router/test/Route/RouteHandlerDiFailTest.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -24,16 +24,16 @@
 block discarded – undo
24 24
     {
25 25
         self::$di = new DIFactoryConfig();
26 26
         self::$di->loadServices([
27
-           "services" => [
28
-               "user" => [
29
-                   "active" => false,
30
-                   "shared" => true,
31
-                   "callback" => function () {
32
-                       $obj = new MockHandlerDiService();
33
-                       return $obj;
34
-                   }
35
-               ],
36
-           ],
27
+            "services" => [
28
+                "user" => [
29
+                    "active" => false,
30
+                    "shared" => true,
31
+                    "callback" => function () {
32
+                        $obj = new MockHandlerDiService();
33
+                        return $obj;
34
+                    }
35
+                ],
36
+            ],
37 37
         ]);
38 38
     }
39 39
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
                "user" => [
29 29
                    "active" => false,
30 30
                    "shared" => true,
31
-                   "callback" => function () {
31
+                   "callback" => function() {
32 32
                        $obj = new MockHandlerDiService();
33 33
                        return $obj;
34 34
                    }
Please login to merge, or discard this patch.
a/vendor/anax/view/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.
a/vendor/anax/view/view/anax/v2/layout/anax.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.
a/vendor/anax/view/view/default1/http_status_code.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-$title   = isset($title)   ? $title   : "Title not set";
3
+$title   = isset($title) ? $title : "Title not set";
4 4
 $message = isset($message) ? $message : "Message not set";
5 5
 
6 6
 
Please login to merge, or discard this patch.