@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | ->method('dispatch') |
71 | 71 | ->will( |
72 | 72 | $this->returnCallback( |
73 | - function ($eventName, $event) use (&$installed) { |
|
73 | + function($eventName, $event) use (&$installed) { |
|
74 | 74 | if ($eventName === MigrationEvents::PRE_UP) { |
75 | 75 | if (null !== $installed) { |
76 | 76 | foreach ($installed as $val) { |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | protected function getMigrationClasses(array $migrations) |
97 | 97 | { |
98 | 98 | return array_map( |
99 | - function ($migration) { |
|
99 | + function($migration) { |
|
100 | 100 | return get_class($migration->getMigration()); |
101 | 101 | }, |
102 | 102 | $migrations |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $extension = new RenameExtension(); |
44 | 44 | $extension->setDatabasePlatform($platform); |
45 | 45 | |
46 | - $schema = new Schema( |
|
46 | + $schema = new Schema( |
|
47 | 47 | [ |
48 | 48 | new Table( |
49 | 49 | 'test_table', |
@@ -160,7 +160,7 @@ discard block |
||
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 |