mirror of
https://github.com/e107inc/e107.git
synced 2025-02-22 07:47:10 +01:00
29 lines
559 B
PHP
29 lines
559 B
PHP
<?php
|
|
/**
|
|
* HybridAuth
|
|
* http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth
|
|
* (c) 2009-2014, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html
|
|
*/
|
|
|
|
/**
|
|
* HybridAuth storage manager interface
|
|
*/
|
|
interface Hybrid_Storage_Interface
|
|
{
|
|
public function config($key, $value);
|
|
|
|
public function get($key);
|
|
|
|
public function set( $key, $value );
|
|
|
|
function clear();
|
|
|
|
function delete($key);
|
|
|
|
function deleteMatch($key);
|
|
|
|
function getSessionData();
|
|
|
|
function restoreSessionData( $sessiondata);
|
|
}
|