Failed Conditions
Push — master ( 7f2d83...323120 )
by Florent
05:07
created
Component/AuthorizationEndpoint/Exception/OAuth2AuthorizationException.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -21,6 +21,10 @@
 block discarded – undo
21 21
 
22 22
     private $errorDescription;
23 23
 
24
+    /**
25
+     * @param string $errorDescription
26
+     * @param \InvalidArgumentException $previous
27
+     */
24 28
     public function __construct(int $code, string $error, ?string $errorDescription, AuthorizationRequest $authorization, ?\Exception $previous = null)
25 29
     {
26 30
         $this->authorization = $authorization;
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/Extension/Extension.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 
19 19
 interface Extension
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function processAfter(ServerRequestInterface $request, AuthorizationRequest $authorization): void;
22 25
 
23 26
     public function processBefore(ServerRequestInterface $request, AuthorizationRequest $authorization): void;
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/ParameterChecker/ParameterChecker.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface ParameterChecker
19 19
 {
20
+    /**
21
+     * @return AuthorizationRequest|null
22
+     */
20 23
     public function check(AuthorizationRequest $authorization);
21 24
 }
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/UserAccount/UserAccountChecker.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface UserAccountChecker
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function check(AuthorizationRequest $authorization): void;
21 24
 }
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/UserAccount/UserAccountDiscovery.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
 
18 18
 interface UserAccountDiscovery
19 19
 {
20
+    /**
21
+     * @return null|UserAccount
22
+     */
20 23
     public function find(): ?UserAccount;
21 24
 
22 25
     public function isFullyAuthenticated(): bool;
Please login to merge, or discard this patch.
src/Component/ClientRegistrationEndpoint/InitialAccessToken.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -23,6 +23,10 @@
 block discarded – undo
23 23
     private $expiresAt;
24 24
     private $userAccountId;
25 25
 
26
+    /**
27
+     * @param UserAccountId $userAccountId
28
+     * @param \DateTimeImmutable|null $expiresAt
29
+     */
26 30
     public function __construct(InitialAccessTokenId $initialAccessTokenId, ?UserAccountId $userAccountId, ?\DateTimeImmutable $expiresAt)
27 31
     {
28 32
         $this->initialAccessTokenId = $initialAccessTokenId;
Please login to merge, or discard this patch.
src/Component/TokenEndpoint/GrantType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * This function checks the request.
34
+     * @return void
34 35
      */
35 36
     public function checkRequest(ServerRequestInterface $request): void;
36 37
 
Please login to merge, or discard this patch.
src/SecurityBundle/Annotation/Checker/Checker.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,5 +18,8 @@
 block discarded – undo
18 18
 
19 19
 interface Checker
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function check(OAuth2Token $token, OAuth2 $configuration): void;
22 25
 }
Please login to merge, or discard this patch.