@@ -63,7 +63,7 @@ |
||
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 | { |
@@ -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(); |