]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
cs
authorThomas Citharel <tcit@tcit.fr>
Fri, 18 Mar 2016 21:23:49 +0000 (22:23 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Sat, 22 Oct 2016 07:06:07 +0000 (09:06 +0200)
src/Wallabag/AnnotationBundle/Controller/WallabagAnnotationController.php
src/Wallabag/ApiBundle/Controller/WallabagRestController.php

index 80ac0035580ab2884aabf9688b4f21acf90d6753..4143c1b6c37beb9cda950f334b416572532d05fe 100644 (file)
@@ -3,7 +3,6 @@
 namespace Wallabag\AnnotationBundle\Controller;
 
 use FOS\RestBundle\Controller\FOSRestController;
-use Nelmio\ApiDocBundle\Annotation\ApiDoc;
 use Symfony\Component\HttpFoundation\Request;
 use Symfony\Component\HttpFoundation\Response;
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
index 6275afa0afc006c4d7b65c17c982d029f56eff34..07d0e1e91f2747f7bd2aeeddea205f5b36c3a902 100644 (file)
@@ -532,7 +532,6 @@ class WallabagRestController extends FOSRestController
      */
     public function getAnnotationsAction(Entry $entry)
     {
-
         $this->validateAuthentication();
 
         $annotationRows = $this
@@ -605,7 +604,6 @@ class WallabagRestController extends FOSRestController
      */
     public function putAnnotationAction(Annotation $annotation, Request $request)
     {
-
         $this->validateAuthentication();
 
         $data = json_decode($request->getContent(), true);
@@ -637,7 +635,6 @@ class WallabagRestController extends FOSRestController
      */
     public function deleteAnnotationAction(Annotation $annotation)
     {
-
         $this->validateAuthentication();
 
         $em = $this->getDoctrine()->getManager();