Completed
Push — master ( 9b3ece...1b83e8 )
by
unknown
02:11
created
src/Highcharts/Type.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,14 +22,14 @@
 block discarded – undo
22 22
 
23 23
 	public function pattern($value)
24 24
 	{
25
-		$value = (is_array($value)) ? $value : [$value] ;
25
+		$value = (is_array($value)) ? $value : [$value];
26 26
 
27 27
 		$this->pattern = $value;
28 28
 	}
29 29
 
30 30
     public function __set($key, $value)
31 31
     {
32
-        if (! in_array($key, $this->availableProperties)) {
32
+        if (!in_array($key, $this->availableProperties)) {
33 33
             throw new UnavailablePropertyException($key . ' is not a valid property');
34 34
         }
35 35
 
Please login to merge, or discard this patch.