From 5b3cd44360d003d8e8c909a5f6376b74afc0308a Mon Sep 17 00:00:00 2001 From: imzhi Date: Tue, 11 Oct 2022 23:15:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20VSCode=20PHP=20Intelephens?= =?UTF-8?q?e=20=E6=89=A9=E5=B1=95=E7=9A=84=E6=B3=A2=E6=B5=AA=E7=BA=BF?= =?UTF-8?q?=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Model.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Model.php b/src/Model.php index 9206a039..647c40b3 100644 --- a/src/Model.php +++ b/src/Model.php @@ -36,11 +36,11 @@ use think\Container; * @method void onAdminInsert(string $ids) 记录新增数据日志 * @method void onAdminDelete(string $ids) 记录删除数据日志 * - * @method bool mSave(array $data = [], string $field = '', mixed $where = []) static 快捷更新逻辑器 - * @method bool|null mDelete(string $field = '', mixed $where = []) static 快捷删除逻辑器 - * @method bool|array mForm(string $template = '', string $field = '', mixed $where = [], array $data = []) static 快捷表单逻辑器 - * @method QueryHelper mQuery($input = null, callable $callable = null) static 快捷查询逻辑器 - * @method bool|integer mUpdate(array $data = [], string $field = '', mixed $where = []) static 快捷保存逻辑器 + * @method bool static mSave(array $data = [], string $field = '', mixed $where = []) static 快捷更新逻辑器 + * @method bool|null static mDelete(string $field = '', mixed $where = []) static 快捷删除逻辑器 + * @method bool|array static mForm(string $template = '', string $field = '', mixed $where = [], array $data = []) static 快捷表单逻辑器 + * @method QueryHelper static mQuery($input = null, callable $callable = null) static 快捷查询逻辑器 + * @method bool|integer static mUpdate(array $data = [], string $field = '', mixed $where = []) static 快捷保存逻辑器 */ abstract class Model extends \think\Model { @@ -121,4 +121,4 @@ abstract class Model extends \think\Model return parent::__callStatic($method, $args); } } -} \ No newline at end of file +} -- Gitee