From beb409e932152dc4fe08fc1035ce2e1f68e39f54 Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Mon, 4 Nov 2013 13:02:54 +0100 Subject: [PATCH] Use symfony/debug error handler instead of the deprecated one --- www/api.php | 2 +- www/index.php | 2 +- www/index_dev.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/www/api.php b/www/api.php index ece1f8f827..7033a9e1d7 100644 --- a/www/api.php +++ b/www/api.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -use Symfony\Component\HttpKernel\Debug\ErrorHandler; +use Symfony\Component\Debug\ErrorHandler; require_once __DIR__ . '/../lib/autoload.php'; diff --git a/www/index.php b/www/index.php index 22f1a537a2..924a601ef3 100644 --- a/www/index.php +++ b/www/index.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -use Symfony\Component\HttpKernel\Debug\ErrorHandler; +use Symfony\Component\Debug\ErrorHandler; require_once __DIR__ . "/../lib/autoload.php"; diff --git a/www/index_dev.php b/www/index_dev.php index a3119aeb90..27ee07a78a 100644 --- a/www/index_dev.php +++ b/www/index_dev.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -use Symfony\Component\HttpKernel\Debug\ErrorHandler; +use Symfony\Component\Debug\ErrorHandler; require_once __DIR__ . "/../lib/autoload.php";