Completed
Pull Request — master (#1)
by
unknown
03:25
created
src/Controllers/SocialAuthController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
      *
164 164
      * @param Request $request
165 165
      * @param SocialProvider $social
166
-     * @return array
166
+     * @return \Illuminate\Http\RedirectResponse
167 167
      * @throws SocialUserAttachException
168 168
      */
169 169
     public function detachAccount(Request $request, SocialProvider $social)
Please login to merge, or discard this patch.
src/SocialProviderManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      * Gets user by unique social identifier.
39 39
      *
40 40
      * @param string $key
41
-     * @return mixed
41
+     * @return Authenticatable
42 42
      */
43 43
     public function getUserByKey(string $key)
44 44
     {
Please login to merge, or discard this patch.
src/Traits/UserSocialite.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      * Check social network is attached to user.
26 26
      *
27 27
      * @param $slug
28
-     * @return mixed
28
+     * @return boolean
29 29
      */
30 30
     public function isAttached(string $slug): bool
31 31
     {
Please login to merge, or discard this patch.