Exemplo n.º 1
0
 /**
  * Magic "__unset" method
  *
  * Allows the ability to arbitrarily remove a parameter from this instance
  * while treating it as an instance property
  *
  * @param string $param     The name of the parameter
  * @access public
  * @return void
  */
 public function __unset($param)
 {
     $this->params_named->remove($param);
 }
 /**
  * Magic "__unset" method
  *
  * Allows the ability to arbitrarily remove shared data from this instance
  * while treating it as an instance property
  *
  * @param string $key     The name of the shared data
  * @access public
  * @return void
  */
 public function __unset($key)
 {
     $this->shared_data->remove($key);
 }