/** * remove config * * @param ConfigEntity $config config instance * @return void */ public function remove(ConfigEntity $config) { $this->repo->remove($config->siteKey, $config->name); }
/** * remove * * @param string $siteKey site key * @param string $name the name * @return void */ public function remove($siteKey, $name) { $this->repo->remove($siteKey, $name); }