aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller')
-rw-r--r--src/Wallabag/CoreBundle/Controller/WallabagRestController.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/WallabagRestController.php b/src/Wallabag/CoreBundle/Controller/WallabagRestController.php
index ddb1f8a5..f77a3749 100644
--- a/src/Wallabag/CoreBundle/Controller/WallabagRestController.php
+++ b/src/Wallabag/CoreBundle/Controller/WallabagRestController.php
@@ -7,7 +7,7 @@ use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7use Symfony\Component\HttpFoundation\Request; 7use Symfony\Component\HttpFoundation\Request;
8use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; 8use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
9use Wallabag\CoreBundle\Entity\Entry; 9use Wallabag\CoreBundle\Entity\Entry;
10use Wallabag\CoreBundle\Entity\Tags; 10use Wallabag\CoreBundle\Entity\Tag;
11use Wallabag\CoreBundle\Service\Extractor; 11use Wallabag\CoreBundle\Service\Extractor;
12 12
13class WallabagRestController extends Controller 13class WallabagRestController extends Controller
@@ -228,7 +228,7 @@ class WallabagRestController extends Controller
228 * } 228 * }
229 * ) 229 * )
230 */ 230 */
231 public function deleteEntriesTagsAction(Entry $entry, Tags $tag) 231 public function deleteEntriesTagsAction(Entry $entry, Tag $tag)
232 { 232 {
233 } 233 }
234 234
@@ -251,7 +251,7 @@ class WallabagRestController extends Controller
251 * } 251 * }
252 * ) 252 * )
253 */ 253 */
254 public function getTagAction(Tags $tag) 254 public function getTagAction(Tag $tag)
255 { 255 {
256 } 256 }
257 257
@@ -264,7 +264,7 @@ class WallabagRestController extends Controller
264 * } 264 * }
265 * ) 265 * )
266 */ 266 */
267 public function deleteTagAction(Tags $tag) 267 public function deleteTagAction(Tag $tag)
268 { 268 {
269 } 269 }
270} 270}