Completed
Pull Request — master (#23)
by
unknown
02:23
created
src/QwatcherServiceProvider.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     /**
64 64
      * Get the services provided by the provider.
65 65
      *
66
-     * @return array
66
+     * @return string[]
67 67
      */
68 68
     public function provides()
69 69
     {
Please login to merge, or discard this 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 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.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -17,15 +17,15 @@  discard block
 block discarded – undo
17 17
      */
18 18
     public function boot()
19 19
     {
20
-        Queue::before(function ($job) {
20
+        Queue::before(function($job) {
21 21
             Qwatch::tracks(new ProcessTracks($job->job->getJobId(), $job->job));
22 22
         });
23 23
 
24
-        Queue::after(function ($job) {
24
+        Queue::after(function($job) {
25 25
             Qwatch::tracks(new SucceedTracks($job->job->getJobId(), $job->job));
26 26
         });
27 27
 
28
-        Queue::failing(function ($job) {
28
+        Queue::failing(function($job) {
29 29
             Qwatch::tracks(new FailedTracks($job->job->getJobId(), $job->job));
30 30
         });
31 31
     }
@@ -40,12 +40,12 @@  discard block
 block discarded – undo
40 40
         /**
41 41
         * publish migrations
42 42
         */
43
-        $this->publishes([__DIR__ . '/../database/migrations' => database_path('migrations')], 'migrations');
43
+        $this->publishes([__DIR__.'/../database/migrations' => database_path('migrations')], 'migrations');
44 44
 
45 45
         /**
46 46
         * Register Facade
47 47
         */
48
-        $this->app->bind('Qwatch', function () {
48
+        $this->app->bind('Qwatch', function() {
49 49
             return (new Qwatcher);
50 50
         });
51 51
     }
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.
database/migrations/2016_10_20_071609_create_Tracks_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('tracks', function (Blueprint $table) {
16
+        Schema::create('tracks', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('driver');
19 19
             $table->integer('queue_id');
Please login to merge, or discard this patch.
src/Qwatcher.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      * Insert or update Track table depand on TracksInterface sub class
15 15
      *
16 16
      * @param  TracksInterface $tracks      Sub class that implements TracksInterface
17
-     * @return mixed
17
+     * @return TracksInterface
18 18
      */
19 19
     public function tracks(TracksInterface $tracks)
20 20
     {
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * Transform records in tracks collection
81 81
      *
82
-     * @param  Collection $tracks   The tracks collection
82
+     * @param  Collection $track   The tracks collection
83 83
      * @return Collection           The tracks collection after transform
84 84
      */
85 85
     protected function transform($track)
Please login to merge, or discard this 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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      */
71 71
     public function getByJobName($name)
72 72
     {
73
-        $collecName = str_replace('\\', '%',$name);
73
+        $collecName = str_replace('\\', '%', $name);
74 74
         $condition = "`tracks`.`meta` LIKE '%\"job_name\":\"{$collecName}\"%'";
75 75
 
76 76
         return $this->transforms(Tracks::whereRaw($condition)->get());
Please login to merge, or discard this patch.