configRepository = $configRepository; } public function get($appid, $key = null) { return $this->configRepository->configGet($appid, $key); } public function set($appid, $key, $value) { return $this->configRepository->configSet($appid, $key, $value); } public function remove($appid, $key) { // return $this->configRepository->remove($appid, $key); } }