2024-03-12 10:22:02 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Events;
|
|
|
|
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class ProxyStarted
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-06-19 06:59:46 +00:00
|
|
|
public function __construct(public $data) {}
|
2024-03-12 10:22:02 +00:00
|
|
|
}
|