Completed
Push — master ( 519b66...9c519b )
by Dmitry
04:43
created
src/Entity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     public function __call($name, $arguments)
27 27
     {
28
-        throw new BadMethodCallException("Call to undefined method ". get_class($this).'::'.$name);
28
+        throw new BadMethodCallException("Call to undefined method ".get_class($this).'::'.$name);
29 29
     }
30 30
 
31 31
     public function __debugInfo()
Please login to merge, or discard this patch.
src/Repository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -427,7 +427,7 @@
 block discarded – undo
427 427
 
428 428
         foreach ($this->space->getFormat() as $index => $info) {
429 429
             $name = $info['name'];
430
-            if(!property_exists($instance, $name)) {
430
+            if (!property_exists($instance, $name)) {
431 431
                 $instance->$name = null;
432 432
             }
433 433
 
Please login to merge, or discard this patch.