coolify/app/Events/ProxyStarted.php

15 lines
302 B
PHP
Raw Normal View History

<?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 22:43:34 +02:00
2024-06-19 08:59:46 +02:00
public function __construct(public $data) {}
}