nextcloud/lib/session/session.php

49 lines
878 B
PHP

<?php
/**
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OC\Session;
interface Session {
/**
* $name serves as a namespace for the session keys
*
* @param string $name
*/
public function __construct($name);
/**
* @param string $key
* @param mixed $value
*/
public function set($key, $value);
/**
* @param string $key
* @return mixed should return null if $key does not exist
*/
public function get($key);
/**
* @param string $key
* @return bool
*/
public function exists($key);
/**
* should not throw any errors if $key does not exist
*
* @param string $key
*/
public function remove($key);
/**
* removes all entries within the cache namespace
*/
public function clear();
}