]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Controller/TagController.php
CS
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Controller / TagController.php
index 89284231579cd29563e0809f61e5be8bc517e6bd..a342ec0b91e21a44fa6c8ad7d3aa13a1c5c2817c 100644 (file)
@@ -4,8 +4,6 @@ namespace Wallabag\CoreBundle\Controller;
 
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
-use Symfony\Component\HttpFoundation\Request;
-use Wallabag\CoreBundle\Entity\Tag;
 
 class TagController extends Controller
 {
@@ -25,9 +23,8 @@ class TagController extends Controller
         return $this->render(
             'WallabagCoreBundle:Tag:tags.html.twig',
             array(
-                'tags'       => $tags
+                'tags' => $tags,
             )
         );
     }
-
 }