Completed
Push — master ( b20886...429801 )
by Dawid
03:31 queued 01:19
created
src/DependencyInjection/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
                             ->cannotBeEmpty()
57 57
                             ->defaultValue('_method')
58 58
                             ->validate()
59
-                                ->ifTrue(function ($methodName): bool {
59
+                                ->ifTrue(function($methodName): bool {
60 60
                                     return !is_string($methodName);
61 61
                                 })
62 62
                                 ->thenInvalid('Not a string provided')
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
                             ->end()
79 79
                             ->beforeNormalization()
80 80
                                 ->ifArray()
81
-                                ->then(function (array $methods): array {
81
+                                ->then(function(array $methods): array {
82 82
                                     return array_unique(array_map('strtoupper', $methods));
83 83
                                 })
84 84
                             ->end()
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      */
120 120
     protected function addApiVersionSupport(ArrayNodeDefinition $rootNode): void
121 121
     {
122
-        $versionNormalizer = static function ($version): string {
122
+        $versionNormalizer = static function($version): string {
123 123
             if (is_string($version)) {
124 124
                 return $version;
125 125
             }
Please login to merge, or discard this patch.