validateKey($key); $name = $this->getStorageKeyId($key); return Session::put($name, $value); } /** * {@inheritdoc} */ public function get($key) { $this->validateKey($key); $name = $this->getStorageKeyId($key); return Session::get($name); } /** * {@inheritdoc} */ public function clear($key) { $this->validateKey($key); $name = $this->getStorageKeyId($key); return Session::forget($name); } }