Files
fuel-price/app/Events/PricesUpdatedEvent.php
Ovidiu U 097f1b0529
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
apilogs
2026-04-04 08:41:21 +01:00

19 lines
434 B
PHP

<?php
namespace App\Events;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class PricesUpdatedEvent
{
use Dispatchable, SerializesModels;
public function __construct(
/** Number of new price records inserted this poll */
public readonly int $insertedCount,
/** Whether this was a full metadata refresh */
public readonly bool $fullRefresh,
) {}
}