@@ -62,7 +62,7 @@ discard block |
||
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 |
||
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 |