delete() public method

Remove a configuration variable
public delete ( string $strKey )
$strKey string The full variable name
 /**
  * Removes a configuration variable.
  *
  * @param string $key The full variable name
  */
 public function delete($key)
 {
     $this->config->delete($key);
 }