Completed
Push — master ( e85608...cac94a )
by Ramūnas
06:54
created
Migration/Loader/MigrationsLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
                 if (!empty($bundleMigrationDirectories)) {
176 176
                     uksort(
177 177
                         $bundleMigrationDirectories,
178
-                        function ($a, $b) {
178
+                        function($a, $b) {
179 179
                             return version_compare($a, $b);
180 180
                         }
181 181
                     );
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
                 if (count($versionedMigrations) > 1) {
336 336
                     usort(
337 337
                         $groupedMigrations[$bundleName][$version],
338
-                        function ($a, $b) {
338
+                        function($a, $b) {
339 339
                             $aOrder = 0;
340 340
                             if ($a instanceof OrderedMigrationInterface) {
341 341
                                 $aOrder = $a->getOrder();
Please login to merge, or discard this patch.
Tests/Unit/Migration/Extension/RenameExtensionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
             [new MySqlPlatform(), 'ALTER TABLE test_table CHANGE old_column new_column VARCHAR(100) NOT NULL'],
161 161
             [new PostgreSqlPlatform(), 'ALTER TABLE test_table RENAME COLUMN old_column TO new_column'],
162 162
             [new OraclePlatform(), 'ALTER TABLE test_table RENAME COLUMN old_column TO new_column'],
163
-            [new SQLServer2005Platform(), "sp_RENAME 'test_table.old_column', 'new_column', 'COLUMN'",],
163
+            [new SQLServer2005Platform(), "sp_RENAME 'test_table.old_column', 'new_column', 'COLUMN'", ],
164 164
         ];
165 165
     }
166 166
 
Please login to merge, or discard this patch.