Completed
Pull Request — master (#1074)
by Luca
02:03
created
src/Grant/DeviceCodeGrant.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
 use League\OAuth2\Server\Entities\ClientEntityInterface;
16 16
 use League\OAuth2\Server\Entities\DeviceCodeEntityInterface;
17 17
 use League\OAuth2\Server\Exception\OAuthServerException;
18
-use League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface;
19 18
 use League\OAuth2\Server\Repositories\DeviceCodeRepositoryInterface;
19
+use League\OAuth2\Server\Repositories\RefreshTokenRepositoryInterface;
20 20
 use League\OAuth2\Server\RequestEvent;
21 21
 use League\OAuth2\Server\RequestTypes\DeviceAuthorizationRequest;
22 22
 use League\OAuth2\Server\ResponseTypes\DeviceCodeResponse;
Please login to merge, or discard this patch.
src/ResponseTypes/DeviceCodeResponse.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
         return $response;
59 59
     }
60 60
 
61
+    /**
62
+     * @param string $payload
63
+     */
61 64
     public function setPayload($payload)
62 65
     {
63 66
         $this->payload = $payload;
Please login to merge, or discard this patch.