Removed some old consts

This commit is contained in:
2023-07-31 19:14:27 +10:00
parent 7ca6fdc195
commit ccafc6866a
3 changed files with 8 additions and 13 deletions

View File

@@ -37,7 +37,7 @@ class CommEMSIReceive extends Command
Log::info('Listening for EMSI connections...');
$o = Setup::findOrFail(config('app.id'));
$server = new SocketServer(Setup::EMSI_PORT,Setup::EMSI_BIND);
$server = new SocketServer($o->emsi_port,$o->emsi_bind);
$server->handler = [new EMSI($o),'onConnect'];
try {