@@ -93,9 +93,9 @@ |
||
93 | 93 | protected function getExpressionLanguage() |
94 | 94 | { |
95 | 95 | $language = new ExpressionLanguage(); |
96 | - $language->register('ini', static function ($value) { |
|
96 | + $language->register('ini', static function($value) { |
|
97 | 97 | return $value; |
98 | - }, static function ($arguments, $value) { |
|
98 | + }, static function($arguments, $value) { |
|
99 | 99 | return ini_get($value); |
100 | 100 | }); |
101 | 101 |
@@ -42,7 +42,7 @@ |
||
42 | 42 | ->arrayNode('check') |
43 | 43 | ->addDefaultsIfNotSet() |
44 | 44 | ->validate() |
45 | - ->ifTrue(static function ($value) { |
|
45 | + ->ifTrue(static function($value) { |
|
46 | 46 | return !$value['warningExpression'] && !$value['criticalExpression']; |
47 | 47 | }) |
48 | 48 | ->thenInvalid('A warningExpression or a criticalExpression must be set.') |