From f733ad9d8906fc9b0b5b323967e621ef9bb2ec4c Mon Sep 17 00:00:00 2001 From: Ugljesa Zivaljevic Date: Thu, 30 May 2024 15:43:09 +0200 Subject: [PATCH] Formatting --- Console/Command/NostoClearQueueCommand.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Console/Command/NostoClearQueueCommand.php b/Console/Command/NostoClearQueueCommand.php index 10f8c7f6b..fbc91e16c 100644 --- a/Console/Command/NostoClearQueueCommand.php +++ b/Console/Command/NostoClearQueueCommand.php @@ -111,7 +111,10 @@ private function clearDBQueues(string $topicName, $io) $connection->commit(); } catch (\Exception $exception) { $connection->rollBack(); - $io->error('An error occurred while clearing DB queues for topic ' . $topicName . ': ' . $exception->getMessage()); + $io->error('An error occurred while clearing DB queues for topic ' + . $topicName . ': ' + . $exception->getMessage() + ); } }