Completed
Push — master ( 39be91...e3ab92 )
by Travis
02:18
created
src/NukaCode/Users/Traits/HasRoles.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      * Assign the given role to the user.
22 22
      *
23 23
      * @param  string $role
24
-     * @return mixed
24
+     * @return \Illuminate\Database\Eloquent\Model
25 25
      */
26 26
     public function assignRole($role)
27 27
     {
Please login to merge, or discard this patch.
src/NukaCode/Users/Http/Controllers/AuthController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      *
62 62
      * @param Registration $request
63 63
      *
64
-     * @return mixed
64
+     * @return \Illuminate\Http\RedirectResponse
65 65
      */
66 66
     public function handleRegister(Registration $request)
67 67
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     /**
85 85
      * Log the user out.
86 86
      *
87
-     * @return mixed
87
+     * @return \Illuminate\Http\RedirectResponse
88 88
      */
89 89
     public function logout()
90 90
     {
Please login to merge, or discard this patch.
src/NukaCode/Users/Http/Controllers/SocialAuthController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      *
58 58
      * @param null|string $provider
59 59
      *
60
-     * @return mixed
60
+     * @return \Illuminate\Http\RedirectResponse
61 61
      */
62 62
     public function callback($provider = null)
63 63
     {
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     /**
115 115
      * Log the user out.
116 116
      *
117
-     * @return mixed
117
+     * @return \Illuminate\Http\RedirectResponse
118 118
      */
119 119
     public function logout()
120 120
     {
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     /**
128 128
      * Find the provider's driver, scopes and extras based on a given provider name.
129 129
      *
130
-     * @param $provider
130
+     * @param null|string $provider
131 131
      *
132 132
      * @throws \Exception
133 133
      */
Please login to merge, or discard this patch.