提交 acff9b20 编写于 作者: 李光春's avatar 李光春

- 优化

上级 3b10d58e
......@@ -21,9 +21,7 @@ namespace DtApp\ThinkLibrary\cache;
use DtApp\ThinkLibrary\exception\DtaException;
use DtApp\ThinkLibrary\facade\Times;
use think\db\exception\DbException;
use think\facade\Db;
use think\Model;
/**
* 缓存数据库驱动
......@@ -60,7 +58,7 @@ class Mysql
/**
* 设置
* @param $cache_value
* @return int|string
* @return bool
* @throws DtaException
*/
public function set($cache_value)
......@@ -77,7 +75,7 @@ class Mysql
/**
* 获取
* @return array|Model|null
* @return mixed
* @throws DtaException
*/
public function get()
......@@ -92,8 +90,9 @@ class Mysql
/**
* 删除
* @return int
* @throws DbException|DtaException
* @return bool
* @throws DtaException
* @throws \think\db\exception\DbException
*/
public function delete()
{
......@@ -107,8 +106,9 @@ class Mysql
/**
* 更新
* @param $cache_value
* @return int
* @throws DbException|DtaException
* @return bool
* @throws DtaException
* @throws \think\db\exception\DbException
*/
public function update($cache_value)
{
......@@ -125,9 +125,9 @@ class Mysql
/**
* 自增
* @param int $int
* @return int
* @throws DbException
* @return bool
* @throws DtaException
* @throws \think\db\exception\DbException
*/
public function inc(int $int = 1)
{
......@@ -143,9 +143,9 @@ class Mysql
/**
* 自减
* @param int $int
* @return int
* @throws DbException
* @return bool
* @throws DtaException
* @throws \think\db\exception\DbException
*/
public function dec(int $int = 1)
{
......
......@@ -22,7 +22,6 @@ declare (strict_types=1);
namespace DtApp\ThinkLibrary\helper;
use DtApp\ThinkLibrary\exception\DtaException;
use think\Exception;
/**
* XML管理类
......@@ -36,7 +35,6 @@ class Xmls
* @param array $values 数组
* @return string
* @throws DtaException
* @throws Exception
*/
public function toXml(array $values)
{
......
......@@ -21,11 +21,9 @@ namespace DtApp\ThinkLibrary\session;
use DtApp\ThinkLibrary\facade\Times;
use think\contract\SessionHandlerInterface;
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
use think\db\exception\ModelNotFoundException;
use think\facade\Db;
/**
* Session保存在MySQL驱动
* Class Mysql
......@@ -67,7 +65,7 @@ class Mysql implements SessionHandlerInterface
* delete方法是在销毁会话的时候执行(调用Session::destroy()方法)。
* @param string $sessionId
* @return bool
* @throws DbException
* @throws \think\db\exception\DbException
*/
public function delete(string $sessionId): bool
{
......@@ -82,9 +80,9 @@ class Mysql implements SessionHandlerInterface
* @param string $sessionId
* @param string $data
* @return bool
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function write(string $sessionId, string $data): bool
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册