30 lines
716 B
PHP
30 lines
716 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Jobs\Sitemaps;
|
|
|
|
use App\Services\Sitemaps\SitemapPublishService;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
final class PublishSitemapReleaseJob implements ShouldQueue
|
|
{
|
|
use Dispatchable;
|
|
use InteractsWithQueue;
|
|
use Queueable;
|
|
use SerializesModels;
|
|
|
|
public function __construct(private readonly ?string $releaseId = null)
|
|
{
|
|
$this->onQueue('default');
|
|
}
|
|
|
|
public function handle(SitemapPublishService $publish): void
|
|
{
|
|
$publish->publish($this->releaseId);
|
|
}
|
|
} |