@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -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 | * The MIT License (MIT) |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | parent::continueConfiguration($node); |
51 | 51 | $node |
52 | 52 | ->validate() |
53 | - ->ifTrue(function ($config) { |
|
53 | + ->ifTrue(function($config) { |
|
54 | 54 | return true === $config['enabled'] && empty($config['realm']); |
55 | 55 | }) |
56 | 56 | ->thenInvalid('The option "realm" must be set.') |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -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 | * The MIT License (MIT) |
@@ -53,13 +53,13 @@ discard block |
||
53 | 53 | parent::continueConfiguration($node); |
54 | 54 | $node |
55 | 55 | ->validate() |
56 | - ->ifTrue(function ($config) { |
|
56 | + ->ifTrue(function($config) { |
|
57 | 57 | return true === $config['enabled'] && empty($config['key_set']); |
58 | 58 | }) |
59 | 59 | ->thenInvalid('The option "key_set" must be set.') |
60 | 60 | ->end() |
61 | 61 | ->validate() |
62 | - ->ifTrue(function ($config) { |
|
62 | + ->ifTrue(function($config) { |
|
63 | 63 | return true === $config['enabled'] && empty($config['allowed_signature_algorithms']); |
64 | 64 | }) |
65 | 65 | ->thenInvalid('At least one signature algorithm must be set.') |
@@ -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 | * The MIT License (MIT) |
@@ -48,13 +48,13 @@ discard block |
||
48 | 48 | parent::continueConfiguration($node); |
49 | 49 | $node |
50 | 50 | ->validate() |
51 | - ->ifTrue(function ($config) { |
|
51 | + ->ifTrue(function($config) { |
|
52 | 52 | return true === $config['enabled'] && empty($config['signature_algorithms']); |
53 | 53 | }) |
54 | 54 | ->thenInvalid('The option "signature_algorithms" must contain at least one signature algorithm.') |
55 | 55 | ->end() |
56 | 56 | ->validate() |
57 | - ->ifTrue(function ($config) { |
|
57 | + ->ifTrue(function($config) { |
|
58 | 58 | return true === $config['enabled'] && empty($config['key_set']); |
59 | 59 | }) |
60 | 60 | ->thenInvalid('The option "key_set" must be set.') |
@@ -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 | * The MIT License (MIT) |
@@ -50,13 +50,13 @@ discard block |
||
50 | 50 | parent::continueConfiguration($node); |
51 | 51 | $node |
52 | 52 | ->validate() |
53 | - ->ifTrue(function ($config) { |
|
53 | + ->ifTrue(function($config) { |
|
54 | 54 | return true === $config['enabled'] && empty($config['realm']); |
55 | 55 | }) |
56 | 56 | ->thenInvalid('The option "realm" must be set.') |
57 | 57 | ->end() |
58 | 58 | ->validate() |
59 | - ->ifTrue(function ($config) { |
|
59 | + ->ifTrue(function($config) { |
|
60 | 60 | return true === $config['enabled'] && empty($config['class']); |
61 | 61 | }) |
62 | 62 | ->thenInvalid('The option "class" must be set.') |