Completed
Push — devel ( 5a91d2...087546 )
by Philippe
05:34
created
src/interfaces/AccessTokenServiceInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     public function findAllByUserId($userId);
56 56
 
57 57
     /**
58
-     * @param string $clientId
58
+     * @param string $userId
59 59
      * @return AccessTokenModelInterface[]
60 60
      */
61 61
     public function findAllByClientId($userId);
Please login to merge, or discard this patch.
src/interfaces/RefreshTokenServiceInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     public function findAllByUserId($userId);
56 56
 
57 57
     /**
58
-     * @param string $clientId
58
+     * @param string $userId
59 59
      * @return RefreshTokenModelInterface[]
60 60
      */
61 61
     public function findAllByClientId($userId);
Please login to merge, or discard this patch.
src/models/BaseModel.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
     /**
120 120
      * Returns the key value of the object
121
-     * @return mixed|null
121
+     * @return string
122 122
      * @since 1.0.0
123 123
      */
124 124
     public function getKey()
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 
130 130
     /**
131 131
      * Returns the old key value of the object
132
-     * @return mixed|null
132
+     * @return string
133 133
      * @since 1.0.0
134 134
      */
135 135
     public function getOldKey()
Please login to merge, or discard this patch.
src/services/Oauth.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -85,6 +85,7 @@
 block discarded – undo
85 85
 
86 86
     /**
87 87
      * @param mixed $config
88
+     * @param \yii\base\Module|null $module
88 89
      * @return array Oauth server configuration
89 90
      * @since 1.0.0
90 91
      */
Please login to merge, or discard this patch.