Failed Conditions
Push — master ( 9635a1...82855d )
by Florent
14:04
created
Endpoint/Authorization/BeforeConsentScreen/BeforeConsentScreenInterface.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/BeforeConsentScreen/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.
Endpoint/Authorization/BeforeConsentScreen/BeforeConsentScreenManager.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/AuthorizationEndpoint.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/Authorization.php 1 patch
Spacing   +8 added lines, -8 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)
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     /**
176 176
      * @return null|TokenTypeInterface
177 177
      */
178
-    public function getTokenType(): ?TokenTypeInterface
178
+    public function getTokenType(): ? TokenTypeInterface
179 179
     {
180 180
         return $this->tokenType;
181 181
     }
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
     /**
219 219
      * @return null|ResponseModeInterface
220 220
      */
221
-    public function getResponseMode(): ?ResponseModeInterface
221
+    public function getResponseMode(): ? ResponseModeInterface
222 222
     {
223 223
         return $this->responseMode;
224 224
     }
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
     /**
240 240
      * @return null|string
241 241
      */
242
-    public function getRedirectUri(): ?string
242
+    public function getRedirectUri(): ? string
243 243
     {
244 244
         return $this->redirectUri;
245 245
     }
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
     /**
263 263
      * @return null|UserAccountInterface
264 264
      */
265
-    public function getUserAccount(): ?UserAccountInterface
265
+    public function getUserAccount(): ? UserAccountInterface
266 266
     {
267 267
         return $this->userAccount;
268 268
     }
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
     /**
337 337
      * @return bool|null
338 338
      */
339
-    public function isUserAccountFullyAuthenticated(): ?bool
339
+    public function isUserAccountFullyAuthenticated(): ? bool
340 340
     {
341 341
         return $this->userAccountFullyAuthenticated;
342 342
     }
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
     /**
446 446
      * @return bool|null
447 447
      */
448
-    public function isAuthorized(): ?bool
448
+    public function isAuthorized(): ? bool
449 449
     {
450 450
         return $this->authorized;
451 451
     }
@@ -511,7 +511,7 @@  discard block
 block discarded – undo
511 511
     /**
512 512
      * @return null|ResourceServerInterface
513 513
      */
514
-    public function getResourceServer(): ?ResourceServerInterface
514
+    public function getResourceServer(): ? ResourceServerInterface
515 515
     {
516 516
         return $this->resourceServer;
517 517
     }
Please login to merge, or discard this patch.
Endpoint/Authorization/ParameterChecker/RedirectUriParameterChecker.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/ScopeParameterChecker.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.
ParameterChecker/ResponseTypeAndResponseModeParameterChecker.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/ParameterCheckerInterface.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.