From 086b3dda88788c156d5102070bf67c502ae50f0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Tue, 14 Jun 2022 17:22:55 +0200 Subject: [PATCH] Fixed cs --- src/Wallabag/CoreBundle/Controller/TagController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Wallabag/CoreBundle/Controller/TagController.php b/src/Wallabag/CoreBundle/Controller/TagController.php index cce241663..250d0b8d4 100644 --- a/src/Wallabag/CoreBundle/Controller/TagController.php +++ b/src/Wallabag/CoreBundle/Controller/TagController.php @@ -231,7 +231,8 @@ class TagController extends Controller * * @return \Symfony\Component\HttpFoundation\Response */ - public function removeTagAction(Tag $tag, Request $request) { + public function removeTagAction(Tag $tag, Request $request) + { foreach ($tag->getEntriesByUserId($this->getUser()->getId()) as $entry) { $this->get('wallabag_core.entry_repository')->removeTag($this->getUser()->getId(), $tag); }