Failed Conditions
Pull Request — master (#17)
by Florent
18:45 queued 13:29
created
Source/Endpoint/AuthorizationEndpointPreConfiguredAuthorizationSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
DependencyInjection/Source/Endpoint/IssuerDiscoveryEndpointSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
Source/Endpoint/AuthorizationEndpointIdTokenHintSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
Server/DependencyInjection/Source/Endpoint/ClientConfigurationSource.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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.')
Please login to merge, or discard this patch.
Source/Endpoint/AuthorizationEndpointRequestObjectSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
Server/DependencyInjection/Source/Endpoint/AuthorizationEndpointSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
Source/Endpoint/ClientRegistrationSoftwareStatementSource.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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.')
Please login to merge, or discard this patch.
Server/DependencyInjection/Source/Endpoint/UserinfoSignatureSource.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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.')
Please login to merge, or discard this patch.
Source/Endpoint/ClientRegistrationInitialAccessTokenSource.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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.')
Please login to merge, or discard this patch.