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

@ -17,6 +17,13 @@ class NewStatusPipeline implements ShouldQueue
protected $status;
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
/**
* Create a new job instance.
*

View File

@ -19,6 +19,13 @@ class StatusActivityPubDeliver implements ShouldQueue
protected $status;
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
/**
* Create a new job instance.
*

View File

@ -20,6 +20,13 @@ class StatusDelete implements ShouldQueue
protected $status;
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
/**
* Create a new job instance.
*

View File

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