From 9b3ea29d9aa0f56e4099076ff76bf1ad2dc15921 Mon Sep 17 00:00:00 2001 From: Fabian Wagner Date: Wed, 15 Apr 2026 10:46:57 +0200 Subject: [PATCH] fix: missing newlines in generated docker-compose websocket config --- src/Commands/PlugNPrayCommand.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Commands/PlugNPrayCommand.php b/src/Commands/PlugNPrayCommand.php index b3b3fb0..45d96dd 100644 --- a/src/Commands/PlugNPrayCommand.php +++ b/src/Commands/PlugNPrayCommand.php @@ -233,10 +233,11 @@ services: YAML; if ($websocket) { - $yaml .= " PUSHER_PORT: \"{$websocketPort}\"\n"; + $yaml .= "\n PUSHER_PORT: \"{$websocketPort}\""; } $yaml .= <<