config = $config; $this->groupRepository = $groupRepository; } /** * @inheritdoc */ public function setDefaultCustomerGroup($id) { if ($this->groupRepository->getById($id)) { $this->config->setDataByPath( \Magento\Customer\Model\GroupManagement::XML_PATH_DEFAULT_ID, $id ); $this->config->save(); } return $id; } }