From da3a3dec5e314183d4c112c8337ef102665fb444 Mon Sep 17 00:00:00 2001 From: Larry Garfield Date: Thu, 3 May 2012 23:44:21 -0500 Subject: [PATCH] Specify additional classes used in this file. --- core/lib/Drupal/Core/EventSubscriber/RouterListener.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/lib/Drupal/Core/EventSubscriber/RouterListener.php b/core/lib/Drupal/Core/EventSubscriber/RouterListener.php index d9beb3eb34e..5ad0db051cd 100644 --- a/core/lib/Drupal/Core/EventSubscriber/RouterListener.php +++ b/core/lib/Drupal/Core/EventSubscriber/RouterListener.php @@ -5,7 +5,12 @@ namespace Drupal\Core\EventSubscriber; use Symfony\Component\HttpKernel\HttpKernelInterface; use Symfony\Component\HttpKernel\EventListener\RouterListener as SymfonyRouterListener; use Symfony\Component\HttpKernel\Event\GetResponseEvent; +use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; +use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException; use Symfony\Component\Routing\Matcher\UrlMatcherInterface; +use Symfony\Component\Routing\Exception\ResourceNotFoundException; +use Symfony\Component\Routing\Exception\MethodNotFoundException; + /** * Description of RouterListener