Skip to content

Commit

Permalink
fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Oct 12, 2020
1 parent 55f0217 commit cdfa6f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Doctrine/DBAL/Schema/Comparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public function diffTable(Table $fromTable, Table $toTable)
$tableDifferences->fromTable = $fromTable;

$fromTableColumns = $fromTable->getColumns();
$toTableColumns = $toTable->getColumns();
$toTableColumns = $toTable->getColumns();

/* See if all the columns in "from" table exist in "to" table */
foreach ($toTableColumns as $columnName => $column) {
Expand Down Expand Up @@ -239,7 +239,7 @@ public function diffTable(Table $fromTable, Table $toTable)
$this->detectColumnRenamings($tableDifferences);

$fromTableIndexes = $fromTable->getIndexes();
$toTableIndexes = $toTable->getIndexes();
$toTableIndexes = $toTable->getIndexes();

/* See if all the indexes in "from" table exist in "to" table */
foreach ($toTableIndexes as $indexName => $index) {
Expand Down

0 comments on commit cdfa6f3

Please sign in to comment.