Completed
Push — master ( 366e1c...39d38f )
by Yann
06:12
created
DependencyInjection/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      */
235 235
     private function stringToArray()
236 236
     {
237
-        return function ($value) {
237
+        return function($value) {
238 238
             return [$value];
239 239
         };
240 240
     }
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
      */
245 245
     private function isNotHash()
246 246
     {
247
-        return function ($value) {
247
+        return function($value) {
248 248
             if (!is_array($value)) {
249 249
                 return true;
250 250
             }
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
      */
265 265
     private function nodeRequiredIfEnabled($node)
266 266
     {
267
-        return function ($value) use ($node) {
267
+        return function($value) use ($node) {
268 268
             if (!$value['enabled']) {
269 269
                 return false;
270 270
             }
Please login to merge, or discard this patch.