@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | public function offsetExists($offset) |
| 51 | 51 | { |
| 52 | - return is_callable([$this, 'get'.ucfirst($offset)]); |
|
| 52 | + return is_callable([$this, 'get' . ucfirst($offset)]); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function offsetGet($offset) |
| 59 | 59 | { |
| 60 | - return call_user_func([$this, 'get'.ucfirst($offset)]); |
|
| 60 | + return call_user_func([$this, 'get' . ucfirst($offset)]); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |