@@ -22,14 +22,14 @@ |
||
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 |