diff options
author | Máté Bartus <mate.bartus@gmail.com> | 2016-02-29 23:23:31 +0100 |
---|---|---|
committer | Máté Bartus <mate.bartus@gmail.com> | 2016-02-29 23:23:31 +0100 |
commit | b1a136e7bd8cc06ee320655a4ee7cf72dcd7c611 (patch) | |
tree | 18e1c055c61c9e289bc877a6d04da1245e350406 | |
parent | dacbf0922756a930821337b2d95d9982df1a43cd (diff) | |
download | forums-b1a136e7bd8cc06ee320655a4ee7cf72dcd7c611.tar forums-b1a136e7bd8cc06ee320655a4ee7cf72dcd7c611.tar.gz forums-b1a136e7bd8cc06ee320655a4ee7cf72dcd7c611.tar.bz2 forums-b1a136e7bd8cc06ee320655a4ee7cf72dcd7c611.tar.xz forums-b1a136e7bd8cc06ee320655a4ee7cf72dcd7c611.zip |
[ticket/14487] Add missing use statement
PHPBB3-14487
-rw-r--r-- | phpBB/phpbb/install/event/kernel_exception_subscriber.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/phpbb/install/event/kernel_exception_subscriber.php b/phpBB/phpbb/install/event/kernel_exception_subscriber.php index c2960cb13c..60b7d9a400 100644 --- a/phpBB/phpbb/install/event/kernel_exception_subscriber.php +++ b/phpBB/phpbb/install/event/kernel_exception_subscriber.php @@ -21,6 +21,7 @@ use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface; use Symfony\Component\HttpKernel\KernelEvents; use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent; +use Symfony\Component\HttpFoundation\JsonResponse; /** * Exception handler for the installer |