itinysun/tp-model-helper

a vendor for thinkphp6.*,help generate phpdocs for model class

v1.0.2 2021-11-03 13:21 UTC

This package is auto-updated.

Last update: 2024-04-29 04:21:41 UTC


README

功能

安装


composer require itinysun/tp-model-helper

修改 配置文件
config/console/model_help

确保已经配置了数据库连接,并且可以连接到数据库

使用方法

//更新所有模型
php think model:help

//更新指定模型
php think model:help app\model\User app\model\Post

//清理所有模型
php think model:help -C

//清理指定模型
php think model:help app\model\User  app\model\Post -C

可选参数


--clean [-C] 清理模式,根据提示清理生成的注释和字段

--overwrite [-O] 强制覆盖已有的属性注释

感谢

本项目修改自 yunwuxin/think-model-helper