From 7874f6ac5831794fa38725fab8e2e5356b95541c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 8 Feb 2021 19:42:10 +0300 Subject: remove PHPMD.UnusedFormalParameter --- plugins/vf_shared/init.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'plugins/vf_shared/init.php') diff --git a/plugins/vf_shared/init.php b/plugins/vf_shared/init.php index 8414a6f08..8c38cbf32 100644 --- a/plugins/vf_shared/init.php +++ b/plugins/vf_shared/init.php @@ -21,9 +21,6 @@ class VF_Shared extends Plugin { return 2; } - /** - * @SuppressWarnings(PHPMD.UnusedFormalParameter) - */ function get_unread($feed_id) { $sth = $this->pdo->prepare("select count(int_id) AS count from ttrss_user_entries where owner_uid = ? and unread = true and uuid != ''"); @@ -36,9 +33,6 @@ class VF_Shared extends Plugin { return 0; } - /** - * @SuppressWarnings(PHPMD.UnusedFormalParameter) - */ function get_total($feed_id) { $sth = $this->pdo->prepare("select count(int_id) AS count from ttrss_user_entries where owner_uid = ? and uuid != ''"); @@ -51,9 +45,6 @@ class VF_Shared extends Plugin { return 0; } - /** - * @SuppressWarnings(PHPMD.UnusedFormalParameter) - */ function get_headlines($feed_id, $options) { $params = array( "feed" => -4, @@ -75,4 +66,4 @@ class VF_Shared extends Plugin { return $qfh_ret; } -} \ No newline at end of file +} -- cgit v1.2.3