mirror of
https://github.com/ambieco/laravel-lift.git
synced 2026-04-30 02:36:17 +08:00
19 lines
374 B
PHP
19 lines
374 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Datasets;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
final class PriceChangedEvent
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public function __construct(
|
|
public ProductWatch $product,
|
|
) {}
|
|
}
|