Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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