coolify/app/Events/ProxyStatusChanged.php

15 lines
308 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ProxyStatusChanged
{
use Dispatchable, InteractsWithSockets, SerializesModels;
2024-06-10 20:43:34 +00:00
public function __construct(public $data) {}
}