remove() public method

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