Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ugljesaspx committed May 30, 2024
1 parent 26ee8cc commit f733ad9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Console/Command/NostoClearQueueCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
);

Check warning on line 117 in Console/Command/NostoClearQueueCommand.php

View workflow job for this annotation

GitHub Actions / Code Sniffer

Expected 0 spaces before closing parenthesis; newline found
}
}

Expand Down

0 comments on commit f733ad9

Please sign in to comment.