]> source.dussan.org Git - nextcloud-server.git/commitdiff
Merge pull request #48721 from nextcloud/feat/allow-getter-setter-decl-fors
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>
Wed, 6 Nov 2024 07:54:40 +0000 (08:54 +0100)
committerGitHub <noreply@github.com>
Wed, 6 Nov 2024 07:54:40 +0000 (08:54 +0100)
1  2 
apps/files/composer/composer/autoload_classmap.php
apps/files/composer/composer/autoload_static.php
lib/composer/composer/autoload_classmap.php
lib/composer/composer/autoload_static.php
lib/private/Settings/DeclarativeManager.php

index d8c25c9a5c7f31759cf978e00f359bb2893b1c81,ee253b8644988dd9d7a9ccae97dc7c19b020e37c..dea0c678f2046ffd4cb8724ae2e8896596805515
@@@ -32,13 -33,22 +33,22 @@@ use Psr\Log\LoggerInterface
   * @psalm-import-type DeclarativeSettingsFormSchemaWithoutValues from IDeclarativeSettingsForm
   */
  class DeclarativeManager implements IDeclarativeManager {
+       /** @var array<string, list<IDeclarativeSettingsForm>> */
+       private array $declarativeForms = [];
+       /**
+        * @var array<string, list<DeclarativeSettingsFormSchemaWithoutValues>>
+        */
+       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,
        ) {
        }