@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | public function offsetGet($offset) |
63 | 63 | { |
64 | - if($this->offsetExists($offset)) { |
|
64 | + if ($this->offsetExists($offset)) { |
|
65 | 65 | return parent::offsetGet($offset); |
66 | 66 | } elseif (null !== ($result = $this->__call($offset))) { |
67 | 67 | return $result; |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | if (method_exists($model, $method)) { |
80 | 80 | $model->row = $this; |
81 | 81 | |
82 | - if(false !== ($result = call_user_func_array([&$model, $method], $args))) { |
|
82 | + if (false !== ($result = call_user_func_array([&$model, $method], $args))) { |
|
83 | 83 | $this->offsetSet($method, $result); |
84 | 84 | |
85 | 85 | return $result; |