Passed
Push — master ( 762772...cfaa5a )
by Jonathan
34s
created
DependencyInjection/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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()
Please login to merge, or discard this patch.