From ad990a21a136a28230ea87dd444eff5790af13fd Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 23 Dec 2023 11:34:18 +0100 Subject: Fix extensions getUserConfiguration fix https://github.com/FreshRSS/FreshRSS/issues/5970 Regression from https://github.com/FreshRSS/FreshRSS/pull/5957 --- lib/Minz/Extension.php | 4 ++-- 1 file 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|null */ - private ?array $user_configuration; + private ?array $user_configuration = null; /** @var array|null */ - private ?array $system_configuration; + private ?array $system_configuration = null; /** @var array{0:'system',1:'user'} */ public static array $authorized_types = [ -- cgit v1.2.3