Fix job dispatching
This commit is contained in:
parent
e482c0df9e
commit
7f9a73360c
8 changed files with 18 additions and 39 deletions
|
@ -4,13 +4,14 @@ namespace App\Jobs;
|
|||
|
||||
use App\Note;
|
||||
use GuzzleHttp\Client;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Queue\InteractsWithQueue;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
|
||||
class SendWebMentions extends Job implements ShouldQueue
|
||||
class SendWebMentions implements ShouldQueue
|
||||
{
|
||||
use InteractsWithQueue, SerializesModels;
|
||||
use InteractsWithQueue, Queueable, SerializesModels;
|
||||
|
||||
protected $note;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue