@@ -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) |
@@ -89,13 +89,13 @@ discard block |
||
89 | 89 | parent::continueConfiguration($node); |
90 | 90 | $node |
91 | 91 | ->validate() |
92 | - ->ifTrue(function ($config) { |
|
92 | + ->ifTrue(function($config) { |
|
93 | 93 | return true === $config['enabled'] && empty($config['signature_algorithms']); |
94 | 94 | }) |
95 | 95 | ->thenInvalid('The option "signature_algorithm" must contain at least one signature algorithm.') |
96 | 96 | ->end() |
97 | 97 | ->validate() |
98 | - ->ifTrue(function ($config) { |
|
98 | + ->ifTrue(function($config) { |
|
99 | 99 | return true === $config['enabled'] && empty($config['key_set']); |
100 | 100 | }) |
101 | 101 | ->thenInvalid('The option "key_set" 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) |
@@ -22,11 +22,13 @@ discard block |
||
22 | 22 | * @param string $path |
23 | 23 | * @param ContainerBuilder $container |
24 | 24 | * @param array $config |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function load(string $path, ContainerBuilder $container, array $config); |
27 | 28 | |
28 | 29 | /** |
29 | 30 | * @param NodeDefinition $node |
31 | + * @return void |
|
30 | 32 | */ |
31 | 33 | public function addConfiguration(NodeDefinition $node); |
32 | 34 | |
@@ -34,6 +36,7 @@ discard block |
||
34 | 36 | * @param array $bundleConfig |
35 | 37 | * @param string $path |
36 | 38 | * @param ContainerBuilder $container |
39 | + * @return void |
|
37 | 40 | */ |
38 | 41 | public function prepend(array $bundleConfig, string $path, ContainerBuilder $container); |
39 | 42 | } |
@@ -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 @@ |
||
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 @@ |
||
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) |