We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a0c2d9 commit c587e04Copy full SHA for c587e04
Server/DumpServer.php
@@ -41,7 +41,7 @@ public function __construct(string $host, LoggerInterface $logger = null)
41
public function start(): void
42
{
43
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));
+ throw new \RuntimeException(sprintf('Server start failed on "%s": '.$errstr.' '.$errno, $this->host));
45
}
46
47
0 commit comments