/** * Setup the namespace object */ public function setup() { $this->instance = new \Skinny\Storage('__Sf_Auth'); $this->instance->lock(); }
/** * 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); }