@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | public function offsetGet($offset) |
161 | 161 | { |
162 | 162 | $property = $this->toStudlyCaps($offset); |
163 | - return call_user_func(array($this, 'get' . $property)); |
|
163 | + return call_user_func(array($this, 'get'.$property)); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | /** |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | public function offsetSet($offset, $value) |
172 | 172 | { |
173 | 173 | $property = $this->toStudlyCaps($offset); |
174 | - return call_user_func(array($this, 'set' . $property), $value); |
|
174 | + return call_user_func(array($this, 'set'.$property), $value); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | /** |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | { |
232 | 232 | $class = $property->getDeclaringClass(); |
233 | 233 | $doc = $class->getDocComment(); |
234 | - $getter = 'get' . $this->toStudlyCaps($property->getName()); |
|
234 | + $getter = 'get'.$this->toStudlyCaps($property->getName()); |
|
235 | 235 | $regex = "#@method (.+?) #"; |
236 | 236 | |
237 | 237 | foreach (explode(PHP_EOL, $doc) as $commentLine) { |