Exemplo n.º 1
0
 /**
  * Returns all the values in the session
  *
  * @return Array
  */
 public function getAll()
 {
     return $this->decorated->getAll();
 }
Exemplo n.º 2
0
 /**
  * Treats the session value as an array and pops value from the end of it
  *
  * @return Mixed Returns the popped value
  */
 public function pop()
 {
     return $this->session->pop($this->key);
 }