summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2024-11-23 11:14:39 +0300
committerAndrew Dolgov <fox@fakecake.org>2024-11-23 11:14:39 +0300
commitce5a96cb30bf47de85ee0394a8c61ef378962c9b (patch)
tree6aec4b9ab877e7741cf530467204450c78ed9ca0
parentbbc28e626a04c826a561261eba6ec6348c9b009d (diff)
set type hint for $action_descriptions
-rw-r--r--classes/Pref_Filters.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/classes/Pref_Filters.php b/classes/Pref_Filters.php
index 32ed2d187..104847098 100644
--- a/classes/Pref_Filters.php
+++ b/classes/Pref_Filters.php
@@ -10,6 +10,7 @@ class Pref_Filters extends Handler_Protected {
const PARAM_ACTIONS = [self::ACTION_TAG, self::ACTION_SCORE,
self::ACTION_LABEL, self::ACTION_PLUGIN, self::ACTION_REMOVE_TAG];
+ /** @var array<int,array<mixed>> $action_descriptions */
private $action_descriptions = [];
function before(string $method) : bool {