From 637c6e1c69dbe4f463d22562fb10dd5e34f9c9f1 Mon Sep 17 00:00:00 2001 From: Volker Date: Mon, 2 Jun 2014 11:48:51 +0200 Subject: [PATCH] Remove undefined variable $e --- src/Symfony/Component/DependencyInjection/ContainerBuilder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/ContainerBuilder.php b/src/Symfony/Component/DependencyInjection/ContainerBuilder.php index 474139df2c..e394d98cbf 100644 --- a/src/Symfony/Component/DependencyInjection/ContainerBuilder.php +++ b/src/Symfony/Component/DependencyInjection/ContainerBuilder.php @@ -467,7 +467,7 @@ class ContainerBuilder extends Container implements TaggedContainerInterface } if (isset($this->loading[$id])) { - throw new LogicException(sprintf('The service "%s" has a circular reference to itself.', $id), 0, $e); + throw new LogicException(sprintf('The service "%s" has a circular reference to itself.', $id)); } if (!$this->hasDefinition($id) && isset($this->aliasDefinitions[$id])) {