]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/FederationBundle/Controller/LikedController.php
WIP
[github/wallabag/wallabag.git] / src / Wallabag / FederationBundle / Controller / LikedController.php
diff --git a/src/Wallabag/FederationBundle/Controller/LikedController.php b/src/Wallabag/FederationBundle/Controller/LikedController.php
new file mode 100644 (file)
index 0000000..3e86d50
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+namespace Wallabag\FederationBundle\Controller;
+
+use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
+use Symfony\Bundle\FrameworkBundle\Controller\Controller;
+use Wallabag\CoreBundle\Entity\Entry;
+
+class LikedController extends Controller
+{
+    /**
+     * @Route("/like/{entry}", name="like")
+     * @param Entry $entry
+     */
+    public function likeAction(Entry $entry)
+    {
+        
+    }
+}