add() 공개 메소드

Add a configuration variable to the local configuration file
public add ( string $strKey, mixed $varValue )
$strKey string The full variable name
$varValue mixed The configuration value
예제 #1
0
 /**
  * Adds a configuration variable to the local configuration file.
  *
  * @param string $key   The full variable name
  * @param mixed  $value The configuration value
  */
 public function add($key, $value)
 {
     $this->config->add($key, $value);
 }