36 lines
642 B
PHP
36 lines
642 B
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\Entry;
|
|
use App\Models\News;
|
|
use App\Services\XenforoApiService;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Queue\Queueable;
|
|
|
|
class CreateXenForoCommentsThread implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
public $tries = 3;
|
|
public $backoff = 10;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*/
|
|
public function __construct(
|
|
protected Entry|News $entry
|
|
)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*/
|
|
public function handle(XenforoApiService $service): void
|
|
{
|
|
$service->createCommentsThread($this->entry);
|
|
}
|
|
}
|