Passed
Push — master ( 61a4e6...13f43c )
by Christophe
02:28
created
GoogleCharts/Charts/OrgChart.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     /**
66 66
      * @param $options OrgChartOptions
67 67
      *
68
-     * @return Map
68
+     * @return OrgChart
69 69
      */
70 70
     public function setOptions($options)
71 71
     {
Please login to merge, or discard this patch.
GoogleCharts/Options/AnnotationChart/AnnotationChartOptions.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -210,7 +210,6 @@
 block discarded – undo
210 210
      *   over each series will display its true value.
211 211
      * - 'allfixed' - Same as 'fixed,' but used when multiple scales are displayed. This setting adjusts each scale
212 212
      *   to the series to which it applies (use this in conjunction with scaleColumns).
213
-
214 213
      * If you specify the min and/or max options, they will take precedence over the minimum and maximum values
215 214
      * determined by your scale type.
216 215
      *
Please login to merge, or discard this patch.
GoogleCharts/Options/GeoChart/GeoChartOptions.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,6 @@
 block discarded – undo
95 95
      *    - A country, specified by its ISO 3166-1 alpha-2 code, e.g., 'AU' for Australia.
96 96
      *    - A state in the United States, specified by its ISO 3166-2:US code, e.g., 'US-AL' for Alabama. Note that
97 97
      *      the resolution option must be set to either 'provinces' or 'metros'.
98
-
99 98
      *
100 99
      * @var string
101 100
      */
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.
Output/Javascript/DateOutput.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function draw(\DateTimeInterface $date)
16 16
     {
17
-        return 'new Date('.$date->format('Y').', '.($date->format('n') - 1).', '.$date->format('j').', '.
17
+        return 'new Date('.$date->format('Y').', '.($date->format('n')-1).', '.$date->format('j').', '.
18 18
             $date->format('H').', '.$date->format('i').', '.$date->format('s').')';
19 19
     }
20 20
 }
Please login to merge, or discard this patch.