Completed
Push — master ( db2a72...0e04a6 )
by Brandon
01:49
created
app/Http/Controllers/DashboardController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6
-
7 5
 class DashboardController extends Controller
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/HomeController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6
-
7 5
 class HomeController extends Controller
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
app/Mail/OrderShipped.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Illuminate\Bus\Queueable;
6 6
 use Illuminate\Mail\Mailable;
7 7
 use Illuminate\Queue\SerializesModels;
8
-use Illuminate\Contracts\Queue\ShouldQueue;
9 8
 
10 9
 class OrderShipped extends Mailable
11 10
 {
Please login to merge, or discard this patch.
app/Notifications/InvoicePaid.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      * Get the notification's delivery channels.
26 26
      *
27 27
      * @param  mixed  $notifiable
28
-     * @return array
28
+     * @return string[]
29 29
      */
30 30
     public function via($notifiable)
31 31
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Bus\Queueable;
6 6
 use Illuminate\Notifications\Notification;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8 7
 use Illuminate\Notifications\Messages\NexmoMessage;
9 8
 
10 9
 class InvoicePaid extends Notification
Please login to merge, or discard this patch.
app/Http/Controllers/UserController.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * Store a new user.
61 61
      *
62 62
      * @param  Request  $request
63
-     * @return Response
63
+     * @return \Illuminate\Http\RedirectResponse
64 64
      */
65 65
     public function store(Request $request)
66 66
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      *
85 85
      * @param  Request  $request
86 86
      * @param  string  $id
87
-     * @return Response
87
+     * @return \Illuminate\Http\RedirectResponse
88 88
      */
89 89
     public function update(Request $request, $id)
90 90
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use App\Http\Controllers\Controller;
8 8
 use App\DataTables\UsersDataTable;
9 9
 use Illuminate\Support\Facades\Auth;
10
-use Illuminate\Validation\Rule;
11 10
 
12 11
 class UserController extends Controller
13 12
 {
Please login to merge, or discard this patch.
app/Policies/UserPolicy.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      *
29 29
      * @param  \App\User  $user
30 30
      * @param  \App\User  $user
31
-     * @return mixed
31
+     * @return boolean
32 32
      */
33 33
     public function view(User $user, User $user)
34 34
     {
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      * Determine whether the user can create users.
41 41
      *
42 42
      * @param  \App\User  $user
43
-     * @return mixed
43
+     * @return boolean
44 44
      */
45 45
     public function create(User $user)
46 46
     {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      *
54 54
      * @param  \App\User  $user
55 55
      * @param  \App\User  $user
56
-     * @return mixed
56
+     * @return boolean
57 57
      */
58 58
     public function update(User $user, User $user)
59 59
     {
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      *
68 68
      * @param  \App\User  $user
69 69
      * @param  \App\User  $user
70
-     * @return mixed
70
+     * @return boolean
71 71
      */
72 72
     public function delete(User $user, User $user)
73 73
     {
Please login to merge, or discard this patch.