Completed
Push — develop ( 7344b5...1b7e26 )
by Neil
03:48
created
app/Http/Controllers/General/SearchController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,10 +25,10 @@
 block discarded – undo
25 25
 
26 26
 namespace App\Http\Controllers\General;
27 27
 
28
+use App\DataTables\General\ArpDataTable;
28 29
 use App\DataTables\General\IPv4DataTable;
29 30
 use App\DataTables\General\IPv6DataTable;
30 31
 use App\DataTables\General\MacDataTable;
31
-use App\DataTables\General\ArpDataTable;
32 32
 use App\Http\Controllers\Controller;
33 33
 use Illuminate\Http\Request;
34 34
 
Please login to merge, or discard this patch.
app/Http/Requests/UpdateUserRequest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
         if ($this->input('update') == 'password') {
57 57
             $user_id = $this->input('user_id');
58 58
             $rules = ['password'              => 'required|min:5|max:255',
59
-                      'password_confirmation' => 'required|same:password',
59
+                        'password_confirmation' => 'required|same:password',
60 60
             ];
61 61
             if (!Auth::user()->isAdmin() || Auth::id() == $user_id) {
62 62
                 $rules['current_password'] = 'required|password:'.$user_id;
Please login to merge, or discard this patch.