clearLike() public method

clear all just descendants vars
public clearLike ( ConfigEntity $config, array $excepts = [] ) : void
$config ConfigEntity config object
$excepts array target to the except
return void
 /**
  * clear all just descendants vars
  *
  * @param ConfigEntity $config  config object
  * @param array        $excepts target to the except
  * @return void
  */
 public function clearLike(ConfigEntity $config, $excepts = [])
 {
     $this->erase($config->siteKey, $config->name);
     $this->repo->clearLike($config, $excepts);
 }