We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c26d122 commit 545cc3aCopy full SHA for 545cc3a
src/Symfony/Component/Messenger/Bridge/Doctrine/Transport/PostgreSqlConnection.php
@@ -141,11 +141,11 @@ private function createTriggerFunctionName(): string
141
{
142
$tableConfig = explode('.', $this->configuration['table_name']);
143
144
- if (1 === count($tableConfig)) {
145
- return sprintf('notify_%1$s' , $tableConfig[0]);
+ if (1 === \count($tableConfig)) {
+ return sprintf('notify_%1$s', $tableConfig[0]);
146
}
147
148
- return sprintf('%1$s.notify_%2$s' , $tableConfig[0], $tableConfig[1]);
+ return sprintf('%1$s.notify_%2$s', $tableConfig[0], $tableConfig[1]);
149
150
151
private function unlisten()
0 commit comments