diff options
author | Alexandre Alapetite <alexandre@alapetite.fr> | 2023-12-23 11:34:18 +0100 |
---|---|---|
committer | Alexandre Alapetite <alexandre@alapetite.fr> | 2023-12-23 11:34:18 +0100 |
commit | ad990a21a136a28230ea87dd444eff5790af13fd (patch) | |
tree | 342a097420af8672766429db71829ae5d9094cc1 | |
parent | ac5980231b5433a18620e9502174fffde4a4e883 (diff) | |
download | freshrss-ad990a21a136a28230ea87dd444eff5790af13fd.tar.gz freshrss-ad990a21a136a28230ea87dd444eff5790af13fd.zip |
Fix extensions getUserConfiguration
fix https://github.com/FreshRSS/FreshRSS/issues/5970
Regression from https://github.com/FreshRSS/FreshRSS/pull/5957
-rw-r--r-- | lib/Minz/Extension.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Minz/Extension.php b/lib/Minz/Extension.php index 057bdd19e..206892bf9 100644 --- a/lib/Minz/Extension.php +++ b/lib/Minz/Extension.php @@ -14,9 +14,9 @@ abstract class Minz_Extension { /** @var 'system'|'user' */ private string $type; /** @var array<string,mixed>|null */ - private ?array $user_configuration; + private ?array $user_configuration = null; /** @var array<string,mixed>|null */ - private ?array $system_configuration; + private ?array $system_configuration = null; /** @var array{0:'system',1:'user'} */ public static array $authorized_types = [ |