aboutsummaryrefslogtreecommitdiff
path: root/classes/RSSUtils.php
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-02-20 13:13:51 +0000
committerAndrew Dolgov <fox@fakecake.org>2025-02-20 13:13:51 +0000
commit85929b5d67a15158a66717c8183a0146a8843339 (patch)
tree133fddb0cf803387553507f05f47ed561ddb1752 /classes/RSSUtils.php
parent169ff6de341b20803796298d8ffea3ee4c4c4f09 (diff)
parent777c2b4c97d1d7088d15bb56f8835fcf57d2f2f3 (diff)
Merge branch 'feature/efficient-filter-testing' into 'master'
Only continue filter testing when there are likely more entries to check. See merge request tt-rss/tt-rss!101
Diffstat (limited to 'classes/RSSUtils.php')
-rw-r--r--classes/RSSUtils.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/classes/RSSUtils.php b/classes/RSSUtils.php
index 3ede6bf3e..b68f7e296 100644
--- a/classes/RSSUtils.php
+++ b/classes/RSSUtils.php
@@ -1514,10 +1514,11 @@ class RSSUtils {
} */
/**
+ * @todo rename this method to indicate it returns the filter actions that should be ran
* @param array<int, array<string, mixed>> $filters
* @param array<int, string> $tags
- * @param array<int, array<string, mixed>>|null $matched_rules
- * @param array<int, array<string, mixed>>|null $matched_filters
+ * @param array<int, array<string, mixed>>|null &$matched_rules
+ * @param array<int, array<string, mixed>>|null &$matched_filters
*
* @return array<int, array<string, string>> An array of filter action arrays with keys "type" and "param"
*/