Failed Conditions
Push — master ( 9635a1...82855d )
by Florent
14:04
created
Endpoint/Authorization/UserAccountDiscovery/PromptNoneParameterChecker.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.
Authorization/UserAccountDiscovery/UserAccountDiscoveryInterface.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.
Endpoint/Authorization/UserAccountDiscovery/UserAccountDiscoveryManager.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
     private function callableForNextRule(int $index): \Closure
51 51
     {
52 52
         if (!isset($this->extensions[$index])) {
53
-            return function (ServerRequestInterface $request, Authorization $authorization): Authorization {
53
+            return function(ServerRequestInterface $request, Authorization $authorization): Authorization {
54 54
                 return $authorization;
55 55
             };
56 56
         }
57 57
         $extension = $this->extensions[$index];
58 58
 
59
-        return function (ServerRequestInterface $request, Authorization $authorization) use ($extension, $index): Authorization {
59
+        return function(ServerRequestInterface $request, Authorization $authorization) use ($extension, $index): Authorization {
60 60
             return $extension->find($request, $authorization, $this->callableForNextRule($index + 1));
61 61
         };
62 62
     }
Please login to merge, or discard this patch.
Endpoint/Authorization/UserAccountDiscovery/LoginParameterChecker.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.
Endpoint/Authorization/AfterConsentScreen/AfterConsentScreenInterface.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.
Endpoint/Authorization/AfterConsentScreen/AfterConsentScreenManager.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.
Authorization/AfterConsentScreen/SessionStateParameterExtension.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)
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      *
39 39
      * @return string
40 40
      */
41
-    abstract protected function getBrowserState(ServerRequestInterface $request, Authorization &$authorization): string;
41
+    abstract protected function getBrowserState(ServerRequestInterface $request, Authorization & $authorization): string;
42 42
 
43 43
     /**
44 44
      * @param ServerRequestInterface $request
Please login to merge, or discard this patch.
Authorization/AfterConsentScreen/PreConfiguredAuthorizationExtension.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.
src/Component/Server/Endpoint/Authorization/AuthorizationFactory.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.