From 8122811d2ab603cb75f5f77dd7dc038f0168282e Mon Sep 17 00:00:00 2001 From: Katherine Bailey Date: Sat, 30 Jun 2012 22:14:22 -0700 Subject: [PATCH] Renaming the method that adds language services to the container --- core/lib/Drupal/Core/DrupalBundle.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Drupal/Core/DrupalBundle.php b/core/lib/Drupal/Core/DrupalBundle.php index 0a5fc4229c27..5791c74f578d 100644 --- a/core/lib/Drupal/Core/DrupalBundle.php +++ b/core/lib/Drupal/Core/DrupalBundle.php @@ -42,7 +42,7 @@ class DrupalBundle extends Bundle $container->setDefinition($id, $definition); } - $this->registerLanguages($container); + $this->registerLanguageServices($container); // Add a compiler pass for registering event subscribers. $container->addCompilerPass(new RegisterKernelListenersPass(), PassConfig::TYPE_AFTER_REMOVING); @@ -128,7 +128,7 @@ class DrupalBundle extends Bundle /** * Registers language-related services to the container. */ - function registerLanguages($container) { + function registerLanguageServices($container) { $types = language_types_get_all();