25 lines
695 B
PHP
25 lines
695 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Services\NovaCards\NovaCardRisingService;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class RecalculateRisingNovaCardsJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public function handle(NovaCardRisingService $risingService): void
|
|
{
|
|
$risingService->invalidateCache();
|
|
// Pre-warm the cache immediately so the next web request is fast.
|
|
$risingService->risingCards(36, cached: false);
|
|
}
|
|
}
|