get(ChromeImport::class); if ($this->get(Config::class)->get('import_with_rabbitmq')) { $service->setProducer($this->get('old_sound_rabbit_mq.import_chrome_producer')); } elseif ($this->get(Config::class)->get('import_with_redis')) { $service->setProducer($this->get('wallabag_import.producer.redis.chrome')); } return $service; } /** * {@inheritdoc} */ protected function getImportTemplate() { return '@WallabagImport/Chrome/index.html.twig'; } }