websiteRepository = $websiteRepository; } /** * @inheritdoc */ public function resolve(string $type, string $code): string { return SalesChannelInterface::TYPE_WEBSITE === $type ? $this->websiteRepository->get($code)->getName() : $code; } }