Completed
Pull Request — develop (#349)
by
unknown
05:01
created
src/Auth.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * Log a user into the application without sessions or cookies.
71 71
      *
72 72
      * @param  array $credentials
73
-     * @return bool
73
+     * @return boolean|null
74 74
      */
75 75
     public function once(array $credentials = [])
76 76
     {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
      *
141 141
      * @param  mixed $id
142 142
      * @param  bool $remember
143
-     * @return \Illuminate\Contracts\Auth\Authenticatable
143
+     * @return string
144 144
      */
145 145
     public function loginUsingId($id, $remember = false)
146 146
     {
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     /**
153 153
      * Determine if the user was authenticated via "remember me" cookie.
154 154
      *
155
-     * @return bool
155
+     * @return boolean|null
156 156
      */
157 157
     public function viaRemember()
158 158
     {
Please login to merge, or discard this patch.
src/JWTAuth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
     /**
169 169
      * Get the token.
170 170
      *
171
-     * @return false|Token
171
+     * @return boolean
172 172
      */
173 173
     public function getToken()
174 174
     {
Please login to merge, or discard this patch.
src/Providers/Auth/Illuminate.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
     /**
62 62
      * Get the currently authenticated user
63 63
      *
64
-     * @return mixed
64
+     * @return \Illuminate\Contracts\Auth\Authenticatable|null
65 65
      */
66 66
     public function user()
67 67
     {
Please login to merge, or discard this patch.