for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Matchish\ScoutElasticSearch\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Matchish\ScoutElasticSearch\ProgressReportable;
class QueueableJob implements ShouldQueue
{
use Queueable;
use ProgressReportable;
public function handle(): void
}