Completed
Push — d64 ( 9e51da...6654da )
by Welling
02:07
created
src/AbstractClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
     protected function parseData($tableName, array $data)
25 25
     {
26
-        $method = 'parse' . StringUtils::underscoreToCamelCase($tableName, true);
26
+        $method = 'parse'.StringUtils::underscoreToCamelCase($tableName, true);
27 27
         if (method_exists($this, $method)) {
28 28
             $data = call_user_func_array([$this, $method], [$data]);
29 29
         }
Please login to merge, or discard this patch.