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

Commit d617765

Browse files
Merge branch '3.4' into 4.4
* 3.4: Fixes sprintf(): Too few arguments in form transformer [Console] Fix QuestionHelper::disableStty() validate subforms in all validation groups Update Hungarian translations Add meaningful message when Process is not installed (ProcessHelper) [PropertyAccess] Fix TypeError parsing again. [Form] add missing Czech validators translation [Validator] add missing Czech translations never directly validate Existence (Required/Optional) constraints
2 parents af1420e + ce2e826 commit d617765

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
@@ -106,7 +106,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
106106
}
107107

108108
if (!$socket = stream_socket_server($host, $errno, $errstr)) {
109-
throw new RuntimeException(sprintf('Server start failed on "%s": '.$errstr.' '.$errno, $host));
109+
throw new RuntimeException(sprintf('Server start failed on "%s": ', $host).$errstr.' '.$errno);
110110
}
111111

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

0 commit comments

Comments
 (0)