Passed
Push — chore ( 2f9919 )
by Arnaud
05:51
created
src/Config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
          * Overrides configuration with environment variables.
63 63
          */
64 64
         $data = $this->getData();
65
-        $applyEnv = function ($array) use ($data) {
65
+        $applyEnv = function($array) use ($data) {
66 66
             $iterator = new \RecursiveIteratorIterator(
67 67
                 new \RecursiveArrayIterator($array),
68 68
                 \RecursiveIteratorIterator::SELF_FIRST
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
             throw new Exception(sprintf('The default language "%s" is not listed in "languages" key configuration.', $this->getLanguageDefault()));
438 438
         }
439 439
 
440
-        $languages = array_filter($languages, function ($language) {
440
+        $languages = array_filter($languages, function($language) {
441 441
             return !(isset($language['enabled']) && $language['enabled'] === false);
442 442
         });
443 443
 
Please login to merge, or discard this patch.