delete() 공개 메소드

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