Completed
Push — master ( 00dadc...98bfc7 )
by Supun
02:08
created
src/Extractor/JsonExtractor.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,12 +37,12 @@
 block discarded – undo
37 37
 
38 38
         foreach ($data as $key => $value) {
39 39
             if (is_array($value) && is_object($value[0])) {
40
-                $sql_tables .= $this->getTables($prefix . $key, $this->getHighestColumnArray($value));
41
-                $sql_tables .= $this->toMysqlTables($this->getHighestColumnArray($value), $prefix . $key . '_');
40
+                $sql_tables .= $this->getTables($prefix.$key, $this->getHighestColumnArray($value));
41
+                $sql_tables .= $this->toMysqlTables($this->getHighestColumnArray($value), $prefix.$key.'_');
42 42
             } elseif (is_array($value)) {
43
-                $sql_tables .= $this->getTables($prefix . $key, $value);
43
+                $sql_tables .= $this->getTables($prefix.$key, $value);
44 44
             } elseif (is_object($value)) {
45
-                $sql_tables .= $this->getTables($prefix . $key, $value);
45
+                $sql_tables .= $this->getTables($prefix.$key, $value);
46 46
             }
47 47
         }
48 48
 
Please login to merge, or discard this patch.