diff --git a/lib/private/App/AppStore/Fetcher/AppFetcher.php b/lib/private/App/AppStore/Fetcher/AppFetcher.php index 7f98617d822c0..b899954a17500 100644 --- a/lib/private/App/AppStore/Fetcher/AppFetcher.php +++ b/lib/private/App/AppStore/Fetcher/AppFetcher.php @@ -39,9 +39,6 @@ use Psr\Log\LoggerInterface; class AppFetcher extends Fetcher { - /** @var IRegistry */ - protected IRegistry $registry; - /** @var bool */ private $ignoreMaxVersion; @@ -51,7 +48,8 @@ public function __construct(Factory $appDataFactory, IConfig $config, CompareVersion $compareVersion, LoggerInterface $logger, - IRegistry $registry) { + protected IRegistry $registry, + ) { parent::__construct( $appDataFactory, $clientService, @@ -61,8 +59,6 @@ public function __construct(Factory $appDataFactory, $registry ); - $this->registry = $registry; - $this->fileName = 'apps.json'; $this->endpointName = 'apps.json'; $this->ignoreMaxVersion = true;