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.
2 parents 9ecbc89 + 7a947d1 commit 56b3aa5Copy full SHA for 56b3aa5
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": '.$errstr.' '.$errno, $this->host));
+ throw new \RuntimeException(sprintf('Server start failed on "%s": ', $this->host).$errstr.' '.$errno);
45
}
46
47
0 commit comments