Test Failed
Push — master ( 398493...d4ef72 )
by Michael
11:04
created
htdocs/class/libraries/vendor/kint-php/kint/src/Parser/Json.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
             return;
27 27
         }
28 28
 
29
-        $json = (array) $json;
29
+        $json = (array)$json;
30 30
         if (empty($json)) {
31 31
             return;
32 32
         }
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/src/Parser/ClassStatics.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
 
116 116
     private static function sort(Kint_Object $a, Kint_Object $b)
117 117
     {
118
-        $sort = ((int) $a->const) - ((int) $b->const);
118
+        $sort = ((int)$a->const) - ((int)$b->const);
119 119
         if ($sort) {
120 120
             return $sort;
121 121
         }
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/src/Parser/ToString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         }
31 31
 
32 32
         $r = new Kint_Object_Representation('toString');
33
-        $r->contents = (string) $var;
33
+        $r->contents = (string)$var;
34 34
 
35 35
         $o->addRepresentation($r);
36 36
     }
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/src/Renderer/Rich.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
         }
127 127
 
128 128
         $children = $this->renderChildren($o);
129
-        $header = $this->renderHeaderWrapper($o, (bool) strlen($children), $this->renderHeader($o));
129
+        $header = $this->renderHeaderWrapper($o, (bool)strlen($children), $this->renderHeader($o));
130 130
 
131 131
         return '<dl>'.$header.$children.'</dl>';
132 132
     }
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/src/Renderer/Rich/Color.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
         $header .= $o->color->getColor(Kint_Object_Representation_Color::COLOR_RGBA);
12 12
         $header .= '"></div></div>';
13 13
 
14
-        $header = $this->renderer->renderHeaderWrapper($o, (bool) strlen($children), $header);
14
+        $header = $this->renderer->renderHeaderWrapper($o, (bool)strlen($children), $header);
15 15
 
16 16
         return '<dl>'.$header.$children.'</dl>';
17 17
     }
Please login to merge, or discard this patch.
class/libraries/vendor/kint-php/kint/src/Renderer/Rich/TraceFrame.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
             $header = $this->renderer->renderHeader($o);
11 11
         } else {
12 12
             if (!empty($o->trace['file']) && !empty($o->trace['line'])) {
13
-                $header = '<var>'.$this->renderer->escape(Kint::shortenPath($o->trace['file'])).':'.(int) $o->trace['line'].'</var> ';
13
+                $header = '<var>'.$this->renderer->escape(Kint::shortenPath($o->trace['file'])).':'.(int)$o->trace['line'].'</var> ';
14 14
             } else {
15 15
                 $header = '<var>PHP internal call</var> ';
16 16
             }
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
             $header .= '<dfn>'.$function.'</dfn>';
33 33
         }
34 34
 
35
-        $header = $this->renderer->renderHeaderWrapper($o, (bool) strlen($children), $header);
35
+        $header = $this->renderer->renderHeaderWrapper($o, (bool)strlen($children), $header);
36 36
 
37 37
         return '<dl>'.$header.$children.'</dl>';
38 38
     }
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/src/Renderer/Rich/Callable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
         if ($o instanceof Kint_Object_Method && strlen($o->owner_class) && strlen($o->name) && !empty(self::$method_cache[$o->owner_class][$o->name])) {
10 10
             $children = self::$method_cache[$o->owner_class][$o->name]['children'];
11 11
 
12
-            $header = $this->renderer->renderHeaderWrapper($o, (bool) strlen($children), self::$method_cache[$o->owner_class][$o->name]['header']);
12
+            $header = $this->renderer->renderHeaderWrapper($o, (bool)strlen($children), self::$method_cache[$o->owner_class][$o->name]['header']);
13 13
 
14 14
             return '<dl>'.$header.$children.'</dl>';
15 15
         }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             }
57 57
         }
58 58
 
59
-        $header = $this->renderer->renderHeaderWrapper($o, (bool) strlen($children), $header);
59
+        $header = $this->renderer->renderHeaderWrapper($o, (bool)strlen($children), $header);
60 60
 
61 61
         return '<dl>'.$header.$children.'</dl>';
62 62
     }
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/src/Renderer/Rich/Docstring.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
             $location[] = 'Inherited from '.$this->renderer->escape($r->class);
22 22
         }
23 23
         if ($r->file && $r->line) {
24
-            $location[] = 'Defined in '.$this->renderer->escape(Kint::shortenPath($r->file)).':'.((int) $r->line);
24
+            $location[] = 'Defined in '.$this->renderer->escape(Kint::shortenPath($r->file)).':'.((int)$r->line);
25 25
         }
26 26
 
27 27
         if ($location) {
Please login to merge, or discard this patch.
class/libraries/vendor/kint-php/kint/src/Renderer/Rich/SimpleXMLElement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
             }
46 46
         }
47 47
 
48
-        $header = $this->renderer->renderHeaderWrapper($o, (bool) strlen($children), $header);
48
+        $header = $this->renderer->renderHeaderWrapper($o, (bool)strlen($children), $header);
49 49
 
50 50
         return '<dl>'.$header.$children.'</dl>';
51 51
     }
Please login to merge, or discard this patch.