fileManager = $fileManager; $this->dataCache = $dataCache; $this->config = $config; } public function load() : MetadataService { $useCache = $this->config->get('useCache') ?? false; return new MetadataService($this->fileManager, $this->dataCache, $useCache); } }