apilogs
This commit is contained in:
18
app/Events/PricesUpdatedEvent.php
Normal file
18
app/Events/PricesUpdatedEvent.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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,
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user