Completed
Push — master ( ec366f...6efa53 )
by Travis
02:11
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/UsersServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
     /**
83 83
      * Get the services provided by the provider.
84 84
      *
85
-     * @return array
85
+     * @return string[]
86 86
      */
87 87
     public function provides()
88 88
     {
Please login to merge, or discard this patch.
src/NukaCode/Users/Http/Controllers/SocialAuthController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @param \Illuminate\Http\Request $request
50 50
      *
51
-     * @return mixed
51
+     * @return \Illuminate\Http\RedirectResponse
52 52
      */
53 53
     public function callback(Request $request)
54 54
     {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     /**
97 97
      * Log the user out.
98 98
      *
99
-     * @return mixed
99
+     * @return \Illuminate\Http\RedirectResponse
100 100
      */
101 101
     public function logout()
102 102
     {
Please login to merge, or discard this patch.