diff --git a/server/src/Net/ClueSocket.php b/server/src/Net/ClueSocket.php index 0d0d379..1a036a6 100644 --- a/server/src/Net/ClueSocket.php +++ b/server/src/Net/ClueSocket.php @@ -20,7 +20,7 @@ public function __construct(string $bindAddress) try { $this->socket = (new Factory())->createServer($bindAddress); $this->resource = $this->socket->getResource(); // @phpstan-ignore-line - socket_set_nonblock($this->resource); + socket_set_nonblock($this->resource); // @phpstan-ignore-line } catch (Exception $ex) { throw new NetException($ex->getMessage(), $ex->getCode(), $ex); }