@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function _set($name, $value) |
31 | 31 | { |
32 | - $setMethod = 'set' . ucfirst($name); |
|
32 | + $setMethod = 'set'.ucfirst($name); |
|
33 | 33 | if (method_exists($this, $setMethod)) { |
34 | 34 | $this->$setMethod($value); |
35 | 35 | } else { |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function _get($name) |
47 | 47 | { |
48 | - $getMethod = 'get' . ucfirst($name); |
|
48 | + $getMethod = 'get'.ucfirst($name); |
|
49 | 49 | if (method_exists($this, $getMethod)) { |
50 | 50 | return $this->$getMethod(); |
51 | 51 | } |