Disable file cache driver

This commit is contained in:
Kijin Sung 2022-12-30 00:10:18 +09:00
parent 84546b936c
commit 8234fd5c7b
3 changed files with 16 additions and 7 deletions

View file

@ -22,6 +22,16 @@ class Dummy extends File implements \Rhymix\Framework\Drivers\CacheInterface
*/
public $data = array();
/**
* Override the isSupported() method of the file driver.
*
* @return bool
*/
public static function isSupported()
{
return true;
}
/**
* Get the value of a key.
*