Completed
Push — master ( f0a769...eb5bc6 )
by
unknown
01:58
created
src/Highcharts/Options/Credits.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
 	protected function setEnabledAttribute($value)
11 11
 	{
12
-		if (! is_bool($value)) {
12
+		if (!is_bool($value)) {
13 13
 			throw new InvalidArgumentException('Credits Enabled must be : boolean');
14 14
 		}
15 15
 
Please login to merge, or discard this patch.
src/Config/charts.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,18 +4,18 @@
 block discarded – undo
4 4
 
5 5
 	'options' => [
6 6
 		'available_types' => [
7
-			'title' => ['text','align','style'],
7
+			'title' => ['text', 'align', 'style'],
8 8
 			'legend' => ['itemStyle'],
9
-			'plotOption' => ['plotOption','shared','valueSuffix'],
10
-			'subtitle' => ['text','style'],
11
-			'xAxis' => ['categories','tickWidth','gridLineWidth','labels'],
12
-			'yAxis' => ['text','label','showFirstLabel'],
13
-			'chart' => ['style','backgroundColor','borderColor','borderRadius','borderWidth','marginTop','className'],
9
+			'plotOption' => ['plotOption', 'shared', 'valueSuffix'],
10
+			'subtitle' => ['text', 'style'],
11
+			'xAxis' => ['categories', 'tickWidth', 'gridLineWidth', 'labels'],
12
+			'yAxis' => ['text', 'label', 'showFirstLabel'],
13
+			'chart' => ['style', 'backgroundColor', 'borderColor', 'borderRadius', 'borderWidth', 'marginTop', 'className'],
14 14
 			'credits' => ['enabled'],
15 15
 		],
16 16
 	],
17 17
 
18 18
 	'series' => [
19
-		'available_types' => ['name','data','zIndex','color','type','fillOpacity','lineWidth'],
19
+		'available_types' => ['name', 'data', 'zIndex', 'color', 'type', 'fillOpacity', 'lineWidth'],
20 20
 	]
21 21
 ];
Please login to merge, or discard this patch.