@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public function __get($propertyName) |
19 | 19 | { |
20 | - if (! property_exists($this, $propertyName)) { |
|
20 | + if (!property_exists($this, $propertyName)) { |
|
21 | 21 | throw new UndefinedPropertyException($this->getScreamErrorMessage("get")); |
22 | 22 | } |
23 | 23 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function __set($propertyName, $value) |
36 | 36 | { |
37 | - if (! property_exists($this, $propertyName)) { |
|
37 | + if (!property_exists($this, $propertyName)) { |
|
38 | 38 | throw new UndefinedPropertyException($this->getScreamErrorMessage("set", $propertyName)); |
39 | 39 | } |
40 | 40 | } |