Completed
Push — master ( f5eef4...aa2564 )
by Dmitry
01:36
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.
src/Plugin/Procedure.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
         $procedure = new $class($this);
38 38
 
39
-        if($instance->hash != md5($procedure->getBody())) {
39
+        if ($instance->hash != md5($procedure->getBody())) {
40 40
             $nick = $this->getNick($class);
41 41
             $params = implode(', ', $procedure->getParams());
42 42
             $body = $procedure->getBody();
Please login to merge, or discard this patch.