aboutsummaryrefslogtreecommitdiff
path: root/app/Utils
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-01-13 17:02:39 +0100
committerGravatar GitHub <noreply@github.com> 2024-01-13 17:02:39 +0100
commit74ed1e6c5772338f8a18f4cbf63bdfcf2ef9baaf (patch)
treea08f3a30d811f1cb94a1adcef06e99b424a58dee /app/Utils
parent9c97d8ca729e3cfb067445c0d3c9ad8284132aeb (diff)
Fix PHP 7.4 compatibility (#6038)
Some recent PRs have broken PHP 7.4 compatibility due to `mixed` typing.
Diffstat (limited to 'app/Utils')
-rw-r--r--app/Utils/dotpathUtil.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/Utils/dotpathUtil.php b/app/Utils/dotpathUtil.php
index aaeb82daa..299b1dcc4 100644
--- a/app/Utils/dotpathUtil.php
+++ b/app/Utils/dotpathUtil.php
@@ -63,7 +63,7 @@ final class FreshRSS_dotpath_Util
* @param mixed $value
* @return bool
*/
- private static function accessible(mixed $value): bool {
+ private static function accessible($value): bool {
return is_array($value) || $value instanceof \ArrayAccess;
}
@@ -84,7 +84,8 @@ final class FreshRSS_dotpath_Util
return false;
}
- private static function value(mixed $value): mixed {
+ /** @param mixed $value */
+ private static function value($value): mixed {
return $value instanceof Closure ? $value() : $value;
}