diff --git a/core/modules/language/src/LanguageNegotiator.php b/core/modules/language/src/LanguageNegotiator.php index df0b702c8e..314d5cab26 100644 --- a/core/modules/language/src/LanguageNegotiator.php +++ b/core/modules/language/src/LanguageNegotiator.php @@ -79,7 +79,7 @@ public function __construct(ConfigurableLanguageManagerInterface $language_manag $this->negotiatorManager = $negotiator_manager; $this->configFactory = $config_factory; if ($requestStack instanceof Settings) { - @trigger_error('The settings service should not be passed to ' . __METHOD__ . ' since drupal:9.5.0. The service will be removed in drupal:"11.0.0. See https://www.drupal.org/node/3306646', E_USER_DEPRECATED); + @trigger_error('The settings service should not be passed to ' . __METHOD__ . ' since drupal:9.5.0. The service will be removed in drupal:11.0.0. See https://www.drupal.org/node/3306646', E_USER_DEPRECATED); $args = func_get_args(); $requestStack = $args[4]; }