Exemple #1
0
 /**
  * Remove a single value from the session
  *
  * @param string $name
  * @throws \Exception
  * @return boolean
  */
 public function remove($name)
 {
     $this->instance->unlock();
     $result = $this->instance->remove($name);
     $this->instance->lock();
     return $result;
 }