/** * Checks to see if a given key exists in the session within this addon's namespace * * @param string $key Key to check * @return boolean */ public function exists($key) { return Session::isKey($this->type, $this->context->getAddonName(), $key); }