aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/AppBundle/Controller/HomeController.php')
-rw-r--r--src/AppBundle/Controller/HomeController.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/AppBundle/Controller/HomeController.php b/src/AppBundle/Controller/HomeController.php
index d8234cf..606d666 100644
--- a/src/AppBundle/Controller/HomeController.php
+++ b/src/AppBundle/Controller/HomeController.php
@@ -9,13 +9,9 @@
namespace AppBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
-use Symfony\Component\HttpFoundation\Response;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use AppBundle\Utils\Aqi;
-
-
-
class HomeController extends Controller
{
/**
@@ -60,7 +56,6 @@ class HomeController extends Controller
$max = max($arr);
$data['Aqi'] = $max;
-
return $this->render('default/index.html.twig', $data);
}