offsetUnset() public method

Unsets a variable in this session section.
public offsetUnset ( $name ) : void
return void
Exemplo n.º 1
0
 /**
  * @param  string
  * @return self
  */
 public function remove($name)
 {
     $this->session->offsetUnset($name);
     return $this;
 }