Skip to content

Commit 56b3aa5

Browse files
Merge branch '3.4' into 4.4
* 3.4: Various cleanups
2 parents 9ecbc89 + 7a947d1 commit 56b3aa5

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": '.$errstr.' '.$errno, $this->host));
44+
throw new \RuntimeException(sprintf('Server start failed on "%s": ', $this->host).$errstr.' '.$errno);
4545
}
4646
}
4747

0 commit comments

Comments
 (0)