Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117748838
MailJob.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
722 B
Referenced Files
None
Subscribers
None
MailJob.php
View Options
<?php
namespace
App\Jobs
;
use
Illuminate\Queue\SerializesModels
;
/**
* An abstract class for all e-mailing jobs
*/
abstract
class
MailJob
extends
CommonJob
{
use
SerializesModels
;
/** @var int The number of times the job may be attempted. */
public
$tries
=
5
;
/** @var bool Delete the job if its models no longer exist. */
public
$deleteWhenMissingModels
=
true
;
/** @var string|null The name of the queue the job should be sent to. */
public
$queue
=
\App\Enums\Queue
::
Mail
->
value
;
/**
* Number of seconds to wait before retrying the job.
*
* @return array<int, int>
*/
public
function
backoff
():
array
{
return
[
10
,
120
,
600
,
3600
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 1:14 AM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18821869
Default Alt Text
MailJob.php (722 B)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline