Skip to content

Commit

Permalink
Small bugfix in DoctrineExtension::getMetadataDriverClass()
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm committed Apr 16, 2021
1 parent 86626ab commit e426d14
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 e426d14

Please sign in to comment.