We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c9a98a commit 73a1b65Copy full SHA for 73a1b65
src/Server.php
@@ -124,6 +124,7 @@ public function __construct(
124
$this->host = $host;
125
$this->port = $port;
126
$this->ipcSocketPath = $ipcSocketPath;
127
+ $this->timers = new TimerCollection();
128
}
129
130
/**
@@ -137,7 +138,6 @@ public function run(): void
137
138
ob_implicit_flush();
139
$this->createSocket($this->host, $this->port);
140
$this->openIPCSocket($this->ipcSocketPath);
- $this->timers = new TimerCollection();
141
$this->log('Server created');
142
143
while (true) {
0 commit comments