Failed Conditions
Push — master ( 9635a1...82855d )
by Florent
14:04
created
Server/Endpoint/Authorization/ParameterChecker/PromptParameterChecker.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/Endpoint/Authorization/ParameterChecker/DisplayParameterChecker.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/Endpoint/Authorization/ParameterChecker/StateParameterChecker.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/ParameterChecker/TokenTypeParameterChecker.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/Endpoint/Authorization/ParameterChecker/ParameterCheckerManager.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)
@@ -52,13 +52,13 @@  discard block
 block discarded – undo
52 52
     private function callableForNextExtension($index)
53 53
     {
54 54
         if (!array_key_exists($index, $this->parameterCheckers)) {
55
-            return function (Authorization $authorization): Authorization {
55
+            return function(Authorization $authorization): Authorization {
56 56
                 return $authorization;
57 57
             };
58 58
         }
59 59
         $parameterChecker = $this->parameterCheckers[$index];
60 60
 
61
-        return function (Authorization $authorization) use ($parameterChecker, $index): Authorization {
61
+        return function(Authorization $authorization) use ($parameterChecker, $index): Authorization {
62 62
             return $parameterChecker->process($authorization, $this->callableForNextExtension($index + 1));
63 63
         };
64 64
     }
Please login to merge, or discard this patch.
Server/Endpoint/Authorization/Exception/RedirectToLoginPageException.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/Endpoint/Authorization/Exception/CreateRedirectionException.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)
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      * @param string        $message
35 35
      * @param null|string   $description
36 36
      */
37
-    public function __construct(Authorization $authorization, string $message, ?string $description)
37
+    public function __construct(Authorization $authorization, string $message, ? string $description)
38 38
     {
39 39
         parent::__construct($message);
40 40
         $this->authorization = $authorization;
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     /**
53 53
      * @return null|string
54 54
      */
55
-    public function getDescription(): ?string
55
+    public function getDescription(): ? string
56 56
     {
57 57
         return $this->description;
58 58
     }
Please login to merge, or discard this patch.
Server/Endpoint/Authorization/Exception/ShowConsentScreenException.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/Endpoint/Authorization/Exception/ProcessAuthorizationException.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.