From a0fc2d06c7bb70444dd6cfab00a4a8e532d0c4f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 31 Mar 2015 14:12:52 +0200 Subject: [PATCH] remove missing use statement from : https://insight.sensiolabs.com/projects/8f0668d1-92b0-48ae-835d-f605926d2711/analyses/1?status=violations#239638172 --- Routing/MenuComposer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Routing/MenuComposer.php b/Routing/MenuComposer.php index f592863f0..0df3e9551 100644 --- a/Routing/MenuComposer.php +++ b/Routing/MenuComposer.php @@ -32,7 +32,7 @@ class MenuComposer implements ContainerAwareInterface public function setContainer(ContainerInterface $container = null) { if (NULL === $container) { - throw new LogicException('container should not be null'); + throw new \LogicException('container should not be null'); } //see remark in MenuComposer::setRouteCollection $this->container = $container;