Completed
Push — master ( 661260...8915f1 )
by
unknown
03:09
created
src/Highcharts/Options/Types/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 setEnabledProperty($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/Highcharts/Highchart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 	{
19 19
 		$availableTypes = array_keys($this->config['available_types']);
20 20
 
21
-		if (! in_array($type, $availableTypes)) {
21
+		if (!in_array($type, $availableTypes)) {
22 22
 			throw new UnavailableTypeException;
23 23
 		}
24 24
 
Please login to merge, or discard this patch.