From c1fea1d8c8cf684c31c10847fcdc7557402fd992 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Sun, 1 Jul 2012 12:35:01 +0200 Subject: [PATCH] fixed incorrect reference to set*Service() method --- src/Symfony/Component/DependencyInjection/Container.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Container.php b/src/Symfony/Component/DependencyInjection/Container.php index 263f12c70a..cdac35be04 100644 --- a/src/Symfony/Component/DependencyInjection/Container.php +++ b/src/Symfony/Component/DependencyInjection/Container.php @@ -218,8 +218,8 @@ class Container implements ContainerInterface /** * Gets a service. * - * If a service is both defined through a set() method and - * with a set*Service() method, the former has always precedence. + * If a service is defined both through a set() method and + * with a get{$id}Service() method, the former has always precedence. * * @param string $id The service identifier * @param integer $invalidBehavior The behavior when the service does not exist