Completed
Pull Request — master (#23)
by
unknown
02:16
created
src/QwatcherServiceProvider.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 use Queue;
4 4
 use Illuminate\Support\ServiceProvider;
5
-use Illuminate\Support\Facades\Log;
6 5
 
7 6
 class QwatcherServiceProvider extends ServiceProvider
8 7
 {
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,13 +38,13 @@
 block discarded – undo
38 38
     public function register()
39 39
     {
40 40
         /**
41
-        * publish migrations
42
-        */
41
+         * publish migrations
42
+         */
43 43
         $this->publishes([__DIR__ . '/../database/migrations' => database_path('migrations')], 'migrations');
44 44
 
45 45
         /**
46
-        * Register Facade
47
-        */
46
+         * Register Facade
47
+         */
48 48
         $this->app->bind('Qwatch', function () {
49 49
             return (new Qwatcher);
50 50
         });
Please login to merge, or discard this patch.
src/Tracks/TracksAbstract.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 use Illuminate\Queue\Queue;
4 4
 use Carbon\Carbon;
5
-use Maqe\Qwatcher\Tracks\Enums\StatusType;
6 5
 
7 6
 abstract class TracksAbstract extends Queue
8 7
 {
Please login to merge, or discard this patch.
src/Traits/WatchableDispatchesJobs.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Maqe\Qwatcher\Traits;
4 4
 
5
-use DB;
6 5
 use Illuminate\Contracts\Bus\Dispatcher;
7 6
 
8 7
 trait WatchableDispatchesJobs
Please login to merge, or discard this patch.
src/Qwatcher.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,10 +1,8 @@
 block discarded – undo
1 1
 <?php namespace Maqe\Qwatcher;
2 2
 
3 3
 use Illuminate\Database\Eloquent\Builder;
4
-use Illuminate\Database\Eloquent\ModelNotFoundException;
5 4
 use Maqe\Qwatcher\Tracks\TracksInterface;
6 5
 use Maqe\Qwatcher\Tracks\Tracks;
7
-use Carbon\Carbon;
8 6
 
9 7
 class Qwatcher
10 8
 {
Please login to merge, or discard this patch.