Esempio n. 1
0
 /**
  * Setup the namespace object
  */
 public function setup()
 {
     $this->instance = new \Skinny\Storage('__Sf_Auth');
     $this->instance->lock();
 }
Esempio n. 2
0
 /**
  * Retrieve a value from the session
  *
  * @param string $name
  * @throws \Exception
  * @return value|boolean false for failure
  */
 public function get($name)
 {
     return $this->instance->get($name);
 }