@@ -25,7 +25,7 @@ |
||
| 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() |
@@ -427,7 +427,7 @@ |
||
| 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 | |
@@ -36,7 +36,7 @@ |
||
| 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(); |