forked from wallabag/wallabag
CS
This commit is contained in:
committed by
Jeremy Benoist
parent
4da01f492b
commit
9bf83f1fb8
@ -412,7 +412,6 @@ class WallabagRestController extends FOSRestController
|
||||
return $this->renderJsonResponse($json);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Retrieve version number.
|
||||
*
|
||||
|
||||
@ -223,13 +223,13 @@ class EntryRepository extends EntityRepository
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove tags from all user entries
|
||||
* Remove tags from all user entries.
|
||||
*
|
||||
* @param int $userId
|
||||
* @param Array<Tag> $tags
|
||||
*/
|
||||
|
||||
public function removeTags($userId, $tags) {
|
||||
public function removeTags($userId, $tags)
|
||||
{
|
||||
foreach ($tags as $tag) {
|
||||
$this->removeTag($userId, $tag);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user