8000
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 9e8c56b commit b99b069Copy full SHA for b99b069
src/Symfony/Component/Messenger/Adapter/AmqpExt/Connection.php
@@ -218,6 +218,6 @@ private function clear(): void
218
219
private function shouldSetup(): bool
220
{
221
- return array_key_exists('auto-setup', $this->connectionCredentials) ? 'false' !== $this->connectionCredentials['auto-setup'] : true;
+ return !array_key_exists('auto-setup', $this->connectionCredentials) || 'false' !== $this->connectionCredentials['auto-setup'];
222
}
223
0 commit comments