Skip to content

Commit 09de286

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fix code Tweak the code to avoid fabbot false positives
2 parents f74a126 + c587e04 commit 09de286

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Server/DumpServer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct(string $host, LoggerInterface $logger = null)
4141
public function start(): void
4242
{
4343
if (!$this->socket = stream_socket_server($this->host, $errno, $errstr)) {
44-
throw new \RuntimeException(sprintf('Server start failed on "%s": %s %s.', $this->host, $errstr, $errno));
44+
throw new \RuntimeException(sprintf('Server start failed on "%s": '.$errstr.' '.$errno, $this->host));
4545
}
4646
}
4747

0 commit comments

Comments
 (0)