Failed Conditions
Push — master ( 6a795c...7bd838 )
by Florent
14:55 queued 04:54
created
src/Component/AuthorizationEndpoint/UserAccount/UserAccountChecker.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
      * @throws Exception\ProcessAuthorizationException
29 29
      * @throws Exception\RedirectToLoginPageException
30 30
      * @throws Exception\ShowConsentScreenException
31
+     * @return void
31 32
      */
32 33
     public function check(Authorization $authorization, ?UserAccount $userAccount, bool $isFullyAuthenticated): void;
33 34
 }
Please login to merge, or discard this patch.
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.