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 6a8e99b commit ba6a65cCopy full SHA for ba6a65c
src/Symfony/Component/Messenger/Bridge/Doctrine/Transport/Connection.php
@@ -298,7 +298,7 @@ public function setup(): void
298
{
299
$configuration = $this->driverConnection->getConfiguration();
300
$assetFilter = $configuration->getSchemaAssetsFilter();
301
- $configuration->setSchemaAssetsFilter(static fn (string $tableName) => $tableName === $this->configuration['table_name']);
+ $configuration->setSchemaAssetsFilter(fn (string $tableName) => $tableName === $this->configuration['table_name']);
302
$this->updateSchema();
303
$configuration->setSchemaAssetsFilter($assetFilter);
304
$this->autoSetup = false;
0 commit comments