Passed
Pull Request — master (#1941)
by Vania
02:51
created
src/Phinx/Db/Adapter/PostgresAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -551,7 +551,7 @@  discard block
 block discarded – undo
551 551
             $sql .= sprintf(
552 552
                 ' USING (%s::bigint)',
553 553
                 $this->quoteColumnName($columnName)
554
-            );;
554
+            ); ;
555 555
         }
556 556
 
557 557
         //NULL and DEFAULT cannot be set while changing column type
@@ -1250,7 +1250,7 @@  discard block
 block discarded – undo
1250 1250
         }
1251 1251
 
1252 1252
         $order = $index->getOrder() ?? [];
1253
-        $columnNames = array_map(function ($columnName) use ($order) {
1253
+        $columnNames = array_map(function($columnName) use ($order) {
1254 1254
             $ret = '"' . $columnName . '"';
1255 1255
             if (isset($order[$columnName])) {
1256 1256
                 $ret .= ' ' . $order[$columnName];
Please login to merge, or discard this patch.