Completed
Push — master ( 5dc04f...12ce49 )
by Travis
03:22 queued 01:09
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/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
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      *
51 51
      * @param \Illuminate\Http\Request $request
52 52
      *
53
-     * @return mixed
53
+     * @return \Illuminate\Http\RedirectResponse
54 54
      */
55 55
     public function callback(Request $request)
56 56
     {
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      *
75 75
      * @param $socialUser
76 76
      *
77
-     * @return mixed
77
+     * @return \NukaCode\Users\Models\User
78 78
      */
79 79
     private function register($socialUser)
80 80
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     /**
102 102
      * Log the user out.
103 103
      *
104
-     * @return mixed
104
+     * @return \Illuminate\Http\RedirectResponse
105 105
      */
106 106
     public function logout()
107 107
     {
Please login to merge, or discard this patch.