Example #1
0
 /**
  * Returns a value from the session
  *
  * @param String $key The key of the value to return
  * @return Mixed
  */
 public function get($key)
 {
     return $this->decorated->get($key);
 }
Example #2
0
 /**
  * Returns a value from the session
  *
  * @return Mixed
  */
 public function get()
 {
     return $this->session->get($this->key);
 }