@@ -175,7 +175,7 @@ discard block |
||
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 |
||
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(); |
@@ -160,7 +160,7 @@ |
||
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 |