Passed
Push — master ( 3a1689...d265e3 )
by Christophe
02:39
created
Output/Javascript/DataOutput.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
             $lastKeyValue = key($row);
74 74
             foreach ($row as $key => $value) {
75 75
                 if ($value instanceof \DateTime) {
76
-                    $js .= 'new Date('.$value->format('Y').', '.($value->format('n') - 1).', '.
76
+                    $js .= 'new Date('.$value->format('Y').', '.($value->format('n')-1).', '.
77 77
                         $value->format('d').', '.$value->format('H').', '.$value->format('i').', '.
78 78
                         $value->format('s').')';
79 79
                 } else {
Please login to merge, or discard this patch.
Output/AbstractOptionsOutput.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     public function removeRecursivelyNullValue(&$options)
18 18
     {
19
-        $options = array_filter((array) $options, function ($val) {
19
+        $options = array_filter((array)$options, function($val) {
20 20
             return !is_null($val);
21 21
         });
22 22
 
Please login to merge, or discard this patch.
Output/Javascript/ChartOutput.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
176 176
      */
177 177
     public function loadLibraries(array $packages)
178 178
     {
179
-        array_walk($packages, function (&$item) {
179
+        array_walk($packages, function(&$item) {
180 180
             $item = "'".$item."'";
181 181
         });
182 182
 
Please login to merge, or discard this patch.