Completed
Push — master ( 3a75c3...4b4c57 )
by Rafael
04:18
created
src/Utils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             $props_arr[$f] = $prop;
32 32
         }
33 33
         if ($parentClass = $refClass->getParentClass()) {
34
-            $parent_props_arr = static::getClassProperties($parentClass);//RECURSION
34
+            $parent_props_arr = static::getClassProperties($parentClass); //RECURSION
35 35
             if (count($parent_props_arr) > 0) {
36 36
                 $props_arr = array_merge($parent_props_arr, $props_arr);
37 37
             }
Please login to merge, or discard this patch.
src/Object2ArrayBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 
69 69
         if ($context instanceof Object2ArrayContext) {
70 70
             $context->setReader($this->getReader() ?: new AccessorReader());
71
-            $context->setNamingStrategy($this->getNamingStrategy() ?:new CamelCaseNamingStrategy());
71
+            $context->setNamingStrategy($this->getNamingStrategy() ?: new CamelCaseNamingStrategy());
72 72
         }
73 73
     }
74 74
 }
75 75
\ No newline at end of file
Please login to merge, or discard this patch.