From: John Molakvoæ Date: Wed, 6 Nov 2024 07:54:40 +0000 (+0100) Subject: Merge pull request #48721 from nextcloud/feat/allow-getter-setter-decl-fors X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8fab143aa486904f7a17c4f1c2f6364cd43bf9d9;p=nextcloud-server.git Merge pull request #48721 from nextcloud/feat/allow-getter-setter-decl-fors --- 8fab143aa486904f7a17c4f1c2f6364cd43bf9d9 diff --cc lib/private/Settings/DeclarativeManager.php index d8c25c9a5c7,ee253b86449..dea0c678f20 --- a/lib/private/Settings/DeclarativeManager.php +++ b/lib/private/Settings/DeclarativeManager.php @@@ -32,13 -33,22 +33,22 @@@ use Psr\Log\LoggerInterface * @psalm-import-type DeclarativeSettingsFormSchemaWithoutValues from IDeclarativeSettingsForm */ class DeclarativeManager implements IDeclarativeManager { + + /** @var array> */ + private array $declarativeForms = []; + + /** + * @var array> + */ + private array $appSchemas = []; + public function __construct( private IEventDispatcher $eventDispatcher, - private IGroupManager $groupManager, - private Coordinator $coordinator, - private IConfig $config, - private IAppConfig $appConfig, - private LoggerInterface $logger, + private IGroupManager $groupManager, + private Coordinator $coordinator, + private IConfig $config, + private IAppConfig $appConfig, + private LoggerInterface $logger, ) { }