1
0
Fork 0

Update StatusPipeline

This commit is contained in:
Daniel Supernault 2019-01-12 15:19:57 -07:00
parent 219362b415
commit 8edeab11d6
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
4 changed files with 32 additions and 4 deletions

View File

@ -16,7 +16,14 @@ class NewStatusPipeline implements ShouldQueue
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $status;
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
/**
* Create a new job instance.
*

View File

@ -18,7 +18,14 @@ class StatusActivityPubDeliver implements ShouldQueue
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $status;
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
/**
* Create a new job instance.
*

View File

@ -19,7 +19,14 @@ class StatusDelete implements ShouldQueue
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $status;
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
/**
* Create a new job instance.
*

View File

@ -24,7 +24,14 @@ class StatusEntityLexer implements ShouldQueue
protected $status;
protected $entities;
protected $autolink;
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
/**
* Create a new job instance.
*