Added makefile, cleanup

This commit is contained in:
2024-03-11 01:05:09 +01:00
parent 138c3b6420
commit 56ddab0cd5
4 changed files with 23 additions and 15 deletions

View File

@ -26,8 +26,6 @@ class Server
private SplObjectStorage $webSocketClients;
private SplObjectStorage $eventClients;
private TopicManager $topicManager;
private ResponseMiddleware $responseMiddleware;
@ -50,7 +48,6 @@ class Server
$this->topicManager = new TopicManager();
$this->eventClients = new SplObjectStorage();
$this->webSocketClients = new SplObjectStorage();
$this->server = $this->createHttpServer();