Completed
Push — master ( 9628d6...a206dc )
by Derek Stephen
09:38
created
src/App/Controller/OAuthController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,13 +3,10 @@
 block discarded – undo
3 3
 namespace App\Controller;
4 4
 
5 5
 use Bone\Mvc\Controller;
6
-use DateInterval;
7 6
 use DateTime;
8 7
 use Del\Common\ContainerService;
9
-use Exception;
10 8
 use OAuth2\Server;
11 9
 use Psr\Http\Message\ResponseInterface;
12
-use Zend\Diactoros\Response;
13 10
 use Zend\Diactoros\Response\SapiEmitter;
14 11
 
15 12
 class OAuthController extends Controller
Please login to merge, or discard this patch.
src/Entity/OAuth/Client.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * Set client_identifier
53 53
      *
54 54
      * @param string $clientIdentifier
55
-     * @return OAuthClient
55
+     * @return Client
56 56
      */
57 57
     public function setClientIdentifier($clientIdentifier)
58 58
     {
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * Set client_secret
75 75
      *
76 76
      * @param string $clientSecret
77
-     * @return OAuthClient
77
+     * @return Client
78 78
      */
79 79
     public function setClientSecret($clientSecret)
80 80
     {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      * Set redirect_uri
106 106
      *
107 107
      * @param string $redirectUri
108
-     * @return OAuthClient
108
+     * @return Client
109 109
      */
110 110
     public function setRedirectUri($redirectUri)
111 111
     {
Please login to merge, or discard this patch.
src/Entity/OAuth/Repository/AccessTokenRepository.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,6 @@
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param string $oauthToken
32
-     * @param string $clientId
33
-     * @param string $userId
34 32
      * @param int $expires
35 33
      * @param null $scope
36 34
      */
Please login to merge, or discard this patch.