Passed
Branch master (77b30e)
by Zacchaeus
08:46 queued 26s
created
src/Console/Commands/RevertModelEvent.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Djunehor\EventRevert;
4 4
 
5 5
 use Illuminate\Console\Command;
6
-use Illuminate\Support\Facades\DB;
7
-use Illuminate\Support\Facades\Schema;
8 6
 
9 7
 class RevertModelEvent extends Command {
10 8
 	/**
Please login to merge, or discard this patch.
src/Http/Controllers/ModelLogController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 		return view('ModelEventLogger::log-table', compact('modelLogs', 'modelActions'));
21 21
 	}
22 22
 
23
+	/**
24
+	 * @param Request $request
25
+	 */
23 26
 	public function applyFilters(Builder $modelLogs, $request) : Builder {
24 27
 		if($request->created_before)
25 28
 			$modelLogs->where('created_at', '<', Carbon::parse($request->created_before));
Please login to merge, or discard this patch.