Passed
Push — master ( cef8d3...1f0b7e )
by Allan
02:45
created
src/Patch/Definition/NormalizerComponents/BasePathComponent.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     
122 122
     private function expandPathVariables(array $pathVariables, array $mutationNamesMap)
123 123
     {
124
-        $nameParts = array_map(function ($part) {
124
+        $nameParts = array_map(function($part) {
125 125
             $part = strtolower(
126 126
                 preg_replace(
127 127
                     array('/([A-Z]+)([A-Z][a-z])/', '/([a-z\d])([A-Z])/'),
@@ -173,19 +173,19 @@  discard block
 block discarded – undo
173 173
     private function createMutationAppliers()
174 174
     {
175 175
         return array(
176
-            function ($value) {
176
+            function($value) {
177 177
                 return str_replace(' ', '', $value);
178 178
             },
179
-            function ($value) {
179
+            function($value) {
180 180
                 return str_replace(' ', '', ucwords($value));
181 181
             },
182
-            function ($value) {
182
+            function($value) {
183 183
                 return str_replace(' ', '', ucfirst($value));
184 184
             },
185
-            function ($value) {
185
+            function($value) {
186 186
                 return str_replace(' ', '-', $value);
187 187
             },
188
-            function ($value) {
188
+            function($value) {
189 189
                 return str_replace(' ', '_', $value);
190 190
             },
191 191
         );
Please login to merge, or discard this patch.