From f21c58c56b2bfc811538a937663f14b969436a62 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 15 Nov 2010 11:13:01 +0100 Subject: [PATCH] [FrameworkBundle] finished code migration after the removal of the ArrayAccess interface for the Container --- src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php b/src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php index 41e7521e49..609689f86f 100644 --- a/src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php +++ b/src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php @@ -27,7 +27,7 @@ class FrameworkBundle extends Bundle public function boot() { if ($this->container->has('error_handler')) { - $this->container['error_handler']; + $this->container->get('error_handler'); } if ($this->container->hasParameter('csrf_secret')) {