15 lines
190 B
PHP
15 lines
190 B
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
class ActionByEmail extends QueuedClosure
|
|
{
|
|
/**
|
|
* The number of times the job may be attempted.
|
|
*
|
|
* @var int
|
|
*/
|
|
public $tries = 1;
|
|
|
|
}
|