storeRepository = $storeRepository; } /** * {@inheritdoc} */ public function getAllowedStoreIds($scopeCode) { $stores = []; foreach ($this->storeRepository->getList() as $store) { if ($store->isActive()) { $stores[] = $store->getId(); } } return $stores; } /** * {@inheritdoc} */ public function getDefaultStoreId($scopeCode) { return $this->storeRepository->get($scopeCode)->getId(); } }