mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-17 19:21:36 +00:00
18 lines
291 B
PHP
18 lines
291 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Server;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
class ServerReachabilityChanged
|
|
{
|
|
use Dispatchable;
|
|
|
|
public function __construct(
|
|
public readonly Server $server
|
|
) {
|
|
$this->server->isReachableChanged();
|
|
}
|
|
}
|