From acff9b201bdc74ffa7ef723c5a948fa9a14413c4 Mon Sep 17 00:00:00 2001 From: Chaim Date: Sat, 8 Aug 2020 12:14:25 +0800 Subject: [PATCH] =?UTF-8?q?-=20=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cache/Mysql.php | 24 ++++++++++++------------ src/helper/Xmls.php | 2 -- src/session/Mysql.php | 12 +++++------- 3 files changed, 17 insertions(+), 21 deletions(-) diff --git a/src/cache/Mysql.php b/src/cache/Mysql.php index 9f77197..915576f 100644 --- a/src/cache/Mysql.php +++ b/src/cache/Mysql.php @@ -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) { diff --git a/src/helper/Xmls.php b/src/helper/Xmls.php index c1f9cab..67fec0d 100644 --- a/src/helper/Xmls.php +++ b/src/helper/Xmls.php @@ -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) { diff --git a/src/session/Mysql.php b/src/session/Mysql.php index e1f90a3..63535f3 100644 --- a/src/session/Mysql.php +++ b/src/session/Mysql.php @@ -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 {