Commit 864bf936 by Qiang Xue

coding style fix.

parent 42d332f8
...@@ -165,11 +165,11 @@ SQL; ...@@ -165,11 +165,11 @@ SQL;
$columns = explode(',', $constraint['columns']); $columns = explode(',', $constraint['columns']);
$fcolumns = explode(',', $constraint['foreign_columns']); $fcolumns = explode(',', $constraint['foreign_columns']);
if ($constraint['foreign_table_schema'] !== $this->defaultSchema) { if ($constraint['foreign_table_schema'] !== $this->defaultSchema) {
$foreign_table = $constraint['foreign_table_schema'] . '.' . $constraint['foreign_table_name']; $foreignTable = $constraint['foreign_table_schema'] . '.' . $constraint['foreign_table_name'];
} else { } else {
$foreign_table = $constraint['foreign_table_name']; $foreignTable = $constraint['foreign_table_name'];
} }
$citem = array($foreign_table); $citem = array($foreignTable);
foreach ($columns as $idx => $column) { foreach ($columns as $idx => $column) {
$citem[] = array($fcolumns[$idx] => $column); $citem[] = array($fcolumns[$idx] => $column);
} }
...@@ -285,5 +285,4 @@ SQL; ...@@ -285,5 +285,4 @@ SQL;
$column->phpType = $this->getColumnPhpType($column); $column->phpType = $this->getColumnPhpType($column);
return $column; return $column;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment