Completed
Push — develop ( 2d7804...593bee )
by Mikaël
68:37 queued 33:42
created
src/AbstractStructBase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.