Esempio n. 1
0
 /**
  * Checks, if the specified key has been added to the session store.
  * 
  * This is often used in conjunction with get to verify a keys existence.
  * 
  * @param mixed $key    The key to query.
  * @return boolean            Indicating availability.
  */
 public function exists($key)
 {
     return $this->sessioning->exists($this->domain, $key);
 }