You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -507,12 +507,20 @@ protected function ormLoad(array $config, ContainerBuilder $container)
507
507
}
508
508
509
509
if ($config['controller_resolver']['auto_mapping'] === null) {
510
-
trigger_deprecation('doctrine/doctrine-bundle', '2.12', 'The default value of "doctrine.orm.controller_resolver.auto_mapping" will be changed from `true` to `false`. Explicitly configure `true` to keep existing behaviour.');
'The default value of "doctrine.orm.controller_resolver.auto_mapping" will be changed from `true` to `false`. Explicitly configure `true` to keep existing behaviour.',
if ($config['controller_resolver']['auto_mapping'] === true) {
515
-
trigger_deprecation('doctrine/doctrine-bundle', '2.13', 'Enabling the controller resolver automapping feature has been deprecated. Symfony Mapped Route Parameters should be used as replacement.');
* Fetches repositories from the container or falls back to normal creation.
@@ -64,7 +64,14 @@ private function doGetRepository(EntityManagerInterface $entityManager, string $
64
64
}
65
65
66
66
if (! $repositoryinstanceof EntityRepository) {
67
-
trigger_deprecation('doctrine/doctrine-bundle', '2.11', 'The service "%s" of type "%s" should extend "%s", not doing so is deprecated.', $repositoryServiceId, get_debug_type($repository), EntityRepository::class);
0 commit comments