aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/ExtensionManager.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-01-06 22:39:35 +0100
committerGravatar GitHub <noreply@github.com> 2022-01-06 22:39:35 +0100
commit8e398d24f132095fffba0db3c7ceea9a43371b4d (patch)
treeea40e91c9e55f590826dc6571f2a9a098431535c /lib/Minz/ExtensionManager.php
parentd339b6dd454d814ffc323fa9077b70e33339c479 (diff)
Fix several PHP8.1 warnings (#4123)
* Fix several PHP8.1 warnings Taking advantage of https://github.com/FreshRSS/FreshRSS/pull/4121 * Couple oh type hints missing * Compatibility PHP 7 * Fix variadic PHPDocs syntax
Diffstat (limited to 'lib/Minz/ExtensionManager.php')
-rw-r--r--lib/Minz/ExtensionManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Minz/ExtensionManager.php b/lib/Minz/ExtensionManager.php
index 2b42708f8..cad408aed 100644
--- a/lib/Minz/ExtensionManager.php
+++ b/lib/Minz/ExtensionManager.php
@@ -295,7 +295,7 @@ class Minz_ExtensionManager {
* array keys.
*
* @param string $hook_name the hook to call.
- * @param mixed $args additional parameters (for signature, please see self::$hook_list).
+ * @param mixed ...$args additional parameters (for signature, please see self::$hook_list).
* @return mixed|null final result of the called hook.
*/
public static function callHook($hook_name, ...$args) {