@@ -63,7 +63,9 @@ |
||
| 63 | 63 | |
| 64 | 64 | protected function getQueueFromJobsTableById($id) |
| 65 | 65 | { |
| 66 | - if ($this->status != StatusType::CREATE) return; |
|
| 66 | + if ($this->status != StatusType::CREATE) { |
|
| 67 | + return; |
|
| 68 | + } |
|
| 67 | 69 | |
| 68 | 70 | try { |
| 69 | 71 | return DB::table('jobs')->where('id', $id)->first(); |
@@ -34,26 +34,26 @@ |
||
| 34 | 34 | public function register() |
| 35 | 35 | { |
| 36 | 36 | /** |
| 37 | - * publish migrations |
|
| 38 | - */ |
|
| 37 | + * publish migrations |
|
| 38 | + */ |
|
| 39 | 39 | $this->publishes([__DIR__ . '/../database/migrations' => database_path('migrations')], 'migrations'); |
| 40 | 40 | $this->publishes([__DIR__ . '/../config/qwatcher.php' => config_path('qwatcher.php')], 'config'); |
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | - * merge config |
|
| 44 | - */ |
|
| 43 | + * merge config |
|
| 44 | + */ |
|
| 45 | 45 | $this->mergeConfigFrom(__DIR__ . '/../config/qwatcher.php', 'qwatcher'); |
| 46 | 46 | |
| 47 | 47 | /** |
| 48 | - * Register Facade |
|
| 49 | - */ |
|
| 48 | + * Register Facade |
|
| 49 | + */ |
|
| 50 | 50 | $this->app->bind('Qwatch', function () { |
| 51 | 51 | return (new Qwatcher); |
| 52 | 52 | }); |
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | - * Register artisan Commands |
|
| 56 | - */ |
|
| 55 | + * Register artisan Commands |
|
| 56 | + */ |
|
| 57 | 57 | // $this->commands([ |
| 58 | 58 | // \Maqe\Qwatcher\Commands\SomeCommand1::class, |
| 59 | 59 | // \Maqe\Qwatcher\Commands\SomeCommand2::class |