Fix job dispatching
This commit is contained in:
parent
e482c0df9e
commit
7f9a73360c
8 changed files with 18 additions and 39 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
namespace App\Jobs;
|
||||
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Queue\InteractsWithQueue;
|
||||
use GuzzleHttp\Exception\RequestException;
|
||||
|
@ -9,9 +10,9 @@ use Illuminate\Contracts\Queue\ShouldQueue;
|
|||
use Jonnybarnes\WebmentionsParser\Authorship;
|
||||
use Jonnybarnes\WebmentionsParser\Exceptions\AuthorshipParserException;
|
||||
|
||||
class SaveProfileImage extends Job implements ShouldQueue
|
||||
class SaveProfileImage implements ShouldQueue
|
||||
{
|
||||
use InteractsWithQueue, SerializesModels;
|
||||
use InteractsWithQueue, Queueable, SerializesModels;
|
||||
|
||||
protected $microformats;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue