aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-06 18:15:19 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-09 12:58:44 +0100
commit653e8be4c1ae589fff52af0229338ced7b2ada2c (patch)
treee07ec28b834a9303b63910e6f6bfb8c4ff5d840a /src/Wallabag/CoreBundle/Controller
parent8af35ad932177e0363412a868afc128b406e3322 (diff)
downloadwallabag-653e8be4c1ae589fff52af0229338ced7b2ada2c.tar.gz
wallabag-653e8be4c1ae589fff52af0229338ced7b2ada2c.tar.zst
wallabag-653e8be4c1ae589fff52af0229338ced7b2ada2c.zip
rename Tags entity
why did I delete this file? rename Tags entity rename Tags entity
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 1df18247..c298d849 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
@@ -206,7 +206,7 @@ class WallabagRestController extends Controller
206 * } 206 * }
207 * ) 207 * )
208 */ 208 */
209 public function deleteEntriesTagsAction(Entry $entry, Tags $tag) 209 public function deleteEntriesTagsAction(Entry $entry, Tag $tag)
210 { 210 {
211 } 211 }
212 212
@@ -229,7 +229,7 @@ class WallabagRestController extends Controller
229 * } 229 * }
230 * ) 230 * )
231 */ 231 */
232 public function getTagAction(Tags $tag) 232 public function getTagAction(Tag $tag)
233 { 233 {
234 } 234 }
235 235
@@ -242,7 +242,7 @@ class WallabagRestController extends Controller
242 * } 242 * }
243 * ) 243 * )
244 */ 244 */
245 public function deleteTagAction(Tags $tag) 245 public function deleteTagAction(Tag $tag)
246 { 246 {
247 } 247 }
248} 248}