8000 [Messenger] Fix coding standards · symfony/symfony@545cc3a · GitHub
[go: up one dir, main page]

Skip to content

Commit 545cc3a

Browse files
committed
[Messenger] Fix coding standards
1 parent c26d122 commit 545cc3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/Messenger/Bridge/Doctrine/Transport/PostgreSqlConnection.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,11 @@ private function createTriggerFunctionName(): string
141141
{
142142
$tableConfig = explode('.', $this->configuration['table_name']);
143143

144-
if (1 === count($tableConfig)) {
145-
return sprintf('notify_%1$s' , $tableConfig[0]);
144+
if (1 === \count($tableConfig)) {
145+
return sprintf('notify_%1$s', $tableConfig[0]);
146146
}
147147

148-
return sprintf('%1$s.notify_%2$s' , $tableConfig[0], $tableConfig[1]);
148+
return sprintf('%1$s.notify_%2$s', $tableConfig[0], $tableConfig[1]);
149149
}
150150

151151
private function unlisten()

0 commit comments

Comments
 (0)
0