内核更新

bug修复
This commit is contained in:
2016-10-02 11:50:36 +08:00
parent 7608d4d0f7
commit a70c700b04
27 changed files with 201 additions and 141 deletions

View File

@@ -16,6 +16,7 @@ namespace think\cache;
*/
abstract class Driver
{
protected $handler = null;
protected $options = [];
protected $tag;
@@ -173,4 +174,15 @@ abstract class Driver
return [];
}
}
/**
* 返回句柄对象,可执行其它高级方法
*
* @access public
* @return object
*/
public function handler()
{
return $this->handler;
}
}