Failed Conditions
Push — master ( b4f6c5...b8d841 )
by Florent
13:51
created
src/Component/AuthorizationCodeGrant/AuthorizationCodeRepository.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -21,8 +21,12 @@
 block discarded – undo
21 21
      * @param AuthorizationCodeId $authorizationCodeId the authorization code string for which to fetch data
22 22
      *
23 23
      * @see     http://tools.ietf.org/html/rfc6749#section-4.1
24
+     * @return AuthorizationCode|null
24 25
      */
25 26
     public function find(AuthorizationCodeId $authorizationCodeId): ?AuthorizationCode;
26 27
 
28
+    /**
29
+     * @return void
30
+     */
27 31
     public function save(AuthorizationCode $authorizationCode): void;
28 32
 }
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/UserAccount/UserAccountDiscovery.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param bool $isFullyAuthenticated
22
+     * @return null|UserAccount
22 23
      */
23 24
     public function find(?bool &$isFullyAuthenticated = null): ?UserAccount;
24 25
 }
Please login to merge, or discard this patch.
src/Component/Core/AccessToken/AccessTokenHandler.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 AccessTokenHandler
17 17
 {
18
+    /**
19
+     * @return AccessToken|null
20
+     */
18 21
     public function find(AccessTokenId $token): ?AccessToken;
19 22
 }
Please login to merge, or discard this patch.
src/Component/Core/TrustedIssuer/TrustedIssuerRepository.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 TrustedIssuerRepository
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function find(string $trustedIssuer): ?TrustedIssuer;
19 22
 }
Please login to merge, or discard this patch.