Failed Conditions
Push — master ( 274b5d...95b3ab )
by Florent
18:12 queued 03:49
created
src/Component/OpenIdConnect/UserInfo/UserInfo.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,12 +13,12 @@
 block discarded – undo
13 13
 
14 14
 namespace OAuth2Framework\Component\OpenIdConnect\UserInfo;
15 15
 
16
+use OAuth2Framework\Component\Core\Client\Client;
17
+use OAuth2Framework\Component\Core\UserAccount\UserAccount;
16 18
 use OAuth2Framework\Component\OpenIdConnect\UserInfo\Claim\ClaimManager;
17 19
 use OAuth2Framework\Component\OpenIdConnect\UserInfo\Claim\ClaimSourceManager;
18 20
 use OAuth2Framework\Component\OpenIdConnect\UserInfo\Pairwise\PairwiseSubjectIdentifierAlgorithm;
19 21
 use OAuth2Framework\Component\OpenIdConnect\UserInfo\ScopeSupport\UserInfoScopeSupportManager;
20
-use OAuth2Framework\Component\Core\Client\Client;
21
-use OAuth2Framework\Component\Core\UserAccount\UserAccount;
22 22
 
23 23
 class UserInfo
24 24
 {
Please login to merge, or discard this patch.
Component/Core/UserAccount/AuthenticationContextClassReferenceSupport.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface AuthenticationContextClassReferenceSupport extends UserAccountManager
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function getAuthenticationContextClassReferenceFor(UserAccount $user): ?string;
19 22
 }
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/Authorization.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
 
336 336
     /**
337 337
      * @param string $responseHeader
338
-     * @param mixed  $value
338
+     * @param string  $value
339 339
      *
340 340
      * @return Authorization
341 341
      */
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
 
455 455
     /**
456 456
      * @param string $key
457
-     * @param mixed  $data
457
+     * @param boolean  $data
458 458
      *
459 459
      * @return Authorization
460 460
      */
@@ -529,7 +529,7 @@  discard block
 block discarded – undo
529 529
 
530 530
     /**
531 531
      * @param string     $key
532
-     * @param mixed|null $data
532
+     * @param string|null $data
533 533
      *
534 534
      * @return Authorization
535 535
      */
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
 use OAuth2Framework\Component\Core\Client\Client;
18 18
 use OAuth2Framework\Component\Core\DataBag\DataBag;
19 19
 use OAuth2Framework\Component\Core\ResourceServer\ResourceServer;
20
-use OAuth2Framework\Component\Core\UserAccount\UserAccount;
21 20
 use OAuth2Framework\Component\Core\TokenType\TokenType;
21
+use OAuth2Framework\Component\Core\UserAccount\UserAccount;
22 22
 
23 23
 class Authorization
24 24
 {
Please login to merge, or discard this patch.