mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-03-09 21:36:46 +08:00
Original unminified source code (dev folder - js, css, less) (fixes #6) Grunt build system Multiple identities correction (fixes #9) Compose html editor (fixes #12) New general settings - Loading Description New warning about default admin password Split general and login screen settings
39 lines
562 B
PHP
39 lines
562 B
PHP
<?php
|
|
|
|
namespace MailSo\Cache;
|
|
|
|
/**
|
|
* @category MailSo
|
|
* @package Cache
|
|
*/
|
|
interface DriverInterface
|
|
{
|
|
/**
|
|
* @param string $sKey
|
|
* @param string $sValue
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function Set($sKey, $sValue);
|
|
|
|
/**
|
|
* @param string $sKey
|
|
*
|
|
* @return string
|
|
*/
|
|
public function Get($sKey);
|
|
|
|
/**
|
|
* @param string $sKey
|
|
*
|
|
* @return void
|
|
*/
|
|
public function Delete($sKey);
|
|
|
|
/**
|
|
* @param int $iTimeToClearInHours = 24
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function GC($iTimeToClearInHours = 24);
|
|
}
|