@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | ->scalarNode('organize_migrations')->defaultValue(false) |
| 47 | 47 | ->info('Organize migrations mode. Possible values are: "BY_YEAR", "BY_YEAR_AND_MONTH", false') |
| 48 | 48 | ->validate() |
| 49 | - ->ifTrue(static function ($v) use ($organizeMigrationModes) { |
|
| 49 | + ->ifTrue(static function($v) use ($organizeMigrationModes) { |
|
| 50 | 50 | if ($v === false) { |
| 51 | 51 | return false; |
| 52 | 52 | } |
@@ -61,8 +61,8 @@ discard block |
||
| 61 | 61 | ->end() |
| 62 | 62 | ->validate() |
| 63 | 63 | ->ifString() |
| 64 | - ->then(static function ($v) { |
|
| 65 | - return constant('Doctrine\Migrations\Configuration\Configuration::VERSIONS_ORGANIZATION_' . strtoupper($v)); |
|
| 64 | + ->then(static function($v) { |
|
| 65 | + return constant('Doctrine\Migrations\Configuration\Configuration::VERSIONS_ORGANIZATION_'.strtoupper($v)); |
|
| 66 | 66 | }) |
| 67 | 67 | ->end() |
| 68 | 68 | ->end() |