17 lines
311 B
PHP
17 lines
311 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ProxyStarted
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
public function __construct(public $data)
|
|
{
|
|
|
|
}
|
|
}
|