diff options
| author | 2022-01-06 22:39:35 +0100 | |
|---|---|---|
| committer | 2022-01-06 22:39:35 +0100 | |
| commit | 8e398d24f132095fffba0db3c7ceea9a43371b4d (patch) | |
| tree | ea40e91c9e55f590826dc6571f2a9a098431535c /lib/Minz/ExtensionManager.php | |
| parent | d339b6dd454d814ffc323fa9077b70e33339c479 (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.php | 2 |
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) { |
