Files
Paymenter-Version-Tracks/app/Jobs/Server/UnsuspendJob.php
Muhammad Tamir b3933b9960 v1.4.0
2025-11-14 10:59:24 +07:00

42 lines
937 B
PHP

<?php
namespace App\Jobs\Server;
use App\Helpers\ExtensionHelper;
use App\Models\Service;
use Exception;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class UnsuspendJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $timeout = 120;
public $tries = 1;
/**
* Create a new job instance.
*/
public function __construct(public Service $service) {}
/**
* Execute the job.
*/
public function handle(): void
{
try {
$data = ExtensionHelper::unsuspendServer($this->service);
} catch (Exception $e) {
if ($e->getMessage() == 'No server assigned to this product') {
return;
}
throw $e;
}
}
}