coolify/app/Jobs/CheckResaleLicenseJob.php

30 lines
788 B
PHP
Raw Normal View History

2023-07-14 11:27:08 +02:00
<?php
namespace App\Jobs;
use App\Actions\License\CheckResaleLicense;
use Illuminate\Bus\Queueable;
2023-09-14 10:12:44 +02:00
use Illuminate\Contracts\Queue\ShouldBeEncrypted;
2023-07-14 11:27:08 +02:00
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2024-06-10 22:43:34 +02:00
class CheckResaleLicenseJob implements ShouldBeEncrypted, ShouldQueue
2023-07-14 11:27:08 +02:00
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2024-06-19 08:59:46 +02:00
public function __construct() {}
2023-07-14 11:27:08 +02:00
public function handle(): void
{
try {
CheckResaleLicense::run();
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
2024-06-10 22:43:34 +02:00
send_internal_notification('CheckResaleLicenseJob failed with: '.$e->getMessage());
2023-09-11 17:36:30 +02:00
ray($e);
throw $e;
2023-07-14 11:27:08 +02:00
}
}
}