v1.3.9.485

* fix Undefined index: BootJs Notice
This commit is contained in:
RainLoop Team 2013-11-07 01:35:40 +04:00
parent de5ff0bcdd
commit b2dafe9e5e
431 changed files with 2 additions and 3 deletions

View file

@ -0,0 +1,39 @@
<?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);
}