Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit ffc4538

Browse files
committed
Tweak the code to avoid fabbot false positives
1 parent 50ff227 commit ffc4538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/ServerLogCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
9999
}
100100

101101
if (!$socket = stream_socket_server($host, $errno, $errstr)) {
102-
throw new RuntimeException(sprintf('Server start failed on "%s": %s %s.', $host, $errstr, $errno));
102+
throw new RuntimeException(sprintf('Server start failed on "%s": '.$errstr.' '.$errno, $host));
103103
}
104104

105105
foreach ($this->getLogs($socket) as $clientId => $message) {

0 commit comments

Comments
 (0)