@@ -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 | |