block-explorer/app/Jobs/ClaimIndexJob.php
2025-05-25 18:45:55 +02:00

19 lines
362 B
PHP

<?php
namespace App\Jobs;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;
use Illuminate\Support\Facades\Artisan;
class ClaimIndexJob implements ShouldQueue{
use Queueable;
/**
* Execute the job.
*/
public function handle(): void{
Artisan::call('explorer:block buildclaimindex');
}
}