@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * This file is part of the SuiteSettingsExtension package. |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | { |
43 | 43 | $builder |
44 | 44 | ->validate() |
45 | - ->ifTrue(function ($value) { return !is_array($value); }) |
|
45 | + ->ifTrue(function($value) { return !is_array($value); }) |
|
46 | 46 | ->thenInvalid('Configuration should be an array') |
47 | 47 | ; |
48 | 48 |