Skip to content

Commit

Permalink
Merge pull request #1324 from Nyholm/bugfix-2
Browse files Browse the repository at this point in the history
Small bugfix in DoctrineExtension::getMetadataDriverClass()
  • Loading branch information
ostrolucky authored Apr 16, 2021
2 parents 86626ab + e426d14 commit e6a9c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DependencyInjection/DoctrineExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ public function getConfiguration(array $config, ContainerBuilder $container): Co

protected function getMetadataDriverClass(string $driverType): string
{
return '%' . $this->getObjectManagerElementName('metadata.' . $driverType . '.class%');
return '%' . $this->getObjectManagerElementName('metadata.' . $driverType . '.class') . '%';
}

private function loadMessengerServices(ContainerBuilder $container): void
Expand Down

0 comments on commit e6a9c16

Please sign in to comment.