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