@@ -2,7 +2,6 @@ |
||
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 | { |
@@ -45,13 +45,13 @@ discard block |
||
45 | 45 | public function register() |
46 | 46 | { |
47 | 47 | /** |
48 | - * publish migrations |
|
49 | - */ |
|
48 | + * publish migrations |
|
49 | + */ |
|
50 | 50 | $this->publishes([__DIR__ . '/../database/migrations' => database_path('migrations')], 'migrations'); |
51 | 51 | |
52 | 52 | /** |
53 | - * Register Facade |
|
54 | - */ |
|
53 | + * Register Facade |
|
54 | + */ |
|
55 | 55 | $this->app->bind('Qwatch', function () { |
56 | 56 | return (new Qwatcher); |
57 | 57 | }); |
@@ -62,8 +62,8 @@ discard block |
||
62 | 62 | include __DIR__.'/routes.php'; |
63 | 63 | |
64 | 64 | /** |
65 | - * Register artisan Commands |
|
66 | - */ |
|
65 | + * Register artisan Commands |
|
66 | + */ |
|
67 | 67 | // $this->commands([ |
68 | 68 | // \Maqe\Qwatcher\Commands\SomeCommand1::class, |
69 | 69 | // \Maqe\Qwatcher\Commands\SomeCommand2::class |
@@ -2,7 +2,6 @@ |
||
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 | { |
@@ -2,7 +2,6 @@ |
||
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 |
@@ -1,8 +1,6 @@ |
||
1 | 1 | <?php namespace Maqe\Qwatcher; |
2 | 2 | |
3 | 3 | use Illuminate\Database\Eloquent\Builder; |
4 | -use Illuminate\Database\Eloquent\Collection; |
|
5 | -use Illuminate\Pagination\LengthAwarePaginator; |
|
6 | 4 | use Maqe\Qwatcher\Tracks\Enums\StatusType; |
7 | 5 | use Maqe\Qwatcher\Tracks\TracksInterface; |
8 | 6 | use Maqe\Qwatcher\Tracks\Tracks; |
@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | use App\Http\Controllers\Controller; |
4 | 4 | use Illuminate\Http\Request; |
5 | -use Maqe\Qwatcher\Tracks\Tracks; |
|
6 | 5 | use Qwatcher; |
7 | 6 | |
8 | 7 | class TracksController extends Controller |