@@ -210,7 +210,6 @@ |
||
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 | * |
@@ -95,7 +95,6 @@ |
||
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 | */ |
@@ -11,7 +11,7 @@ |
||
11 | 11 | { |
12 | 12 | public function draw(\DateTimeInterface $date) |
13 | 13 | { |
14 | - return 'new Date('.$date->format('Y').', '.((int) $date->format('n') - 1).', '.$date->format('j').', '. |
|
14 | + return 'new Date('.$date->format('Y').', '.((int)$date->format('n')-1).', '.$date->format('j').', '. |
|
15 | 15 | $date->format('H').', '.$date->format('i').', '.$date->format('s').')'; |
16 | 16 | } |
17 | 17 | } |
@@ -159,7 +159,7 @@ |
||
159 | 159 | |
160 | 160 | public function loadLibraries(array $packages) |
161 | 161 | { |
162 | - array_walk($packages, function (&$item) { |
|
162 | + array_walk($packages, function(&$item) { |
|
163 | 163 | $item = "'".$item."'"; |
164 | 164 | }); |
165 | 165 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | { |
10 | 10 | public function removeRecursivelyNullValue(&$options) |
11 | 11 | { |
12 | - $options = array_filter((array) $options, function ($val) { |
|
12 | + $options = array_filter((array)$options, function($val) { |
|
13 | 13 | return !is_null($val); |
14 | 14 | }); |
15 | 15 |