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
@trigger_error(sprintf('The "doctrine.dbal.%s" %s deprecated since DoctrineBundle 2.4, use the "doctrine.dbal.url" option instead.', implode('", "doctrine.dbal.', array_keys($deprecatedValues)), $message), E_USER_DEPRECATED);
259
+
@trigger_error(sprintf('Setting the "doctrine.dbal.%s" %s while the "url" one is defined is deprecated since DoctrineBundle 2.4.', implode('", "', $urlConflictingValues), $tail), E_USER_DEPRECATED);
254
260
}
255
261
256
262
return$values;
@@ -263,7 +269,7 @@ private function configureDbalDriverNode(ArrayNodeDefinition $node): void
263
269
->scalarNode('port')->info('Defaults to null at runtime.')->end()
264
270
->scalarNode('user')->info('Defaults to "root" at runtime.')->end()
265
271
->scalarNode('password')->info('Defaults to null at runtime.')->end()
266
-
->booleanNode('override_url')->info('Allows overriding parts of the "url" parameter with dbname, host, port, user, and/or password parameters.')->end()
272
+
->booleanNode('override_url')->setDeprecated(...$this->getDeprecationMsg('The "doctrine.dbal.override_url" configuration key is deprecated.', '2.4'))->end()
0 commit comments