Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class RetryChecker implements ShouldQueue |
||
15 | { |
||
16 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
|
|||
17 | |||
18 | public $checker; |
||
19 | |||
20 | /** |
||
21 | * Create a new job instance. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function __construct(Checker $checker) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Execute the job. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | public function handle() |
||
42 |