Passed
Push — master ( 60b853...1c2d69 )
by Zeeshan
23s
created
src/Scream.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.