mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-06-07 04:28:11 +08:00
补齐 v8 分支的自动化质量保障,使插件化迁移、发布安装和架构边界都能在目标仓库内验证。 主要内容: - 新增 PHPUnit 配置和 smoke 测试,覆盖发布、安装与 think 命令加载。 - 新增根级 tests 用例,验证路由、构建器、插件边界和业务集成行为。 - 新增 PHPStan 配置与运行时 stub,避免 Composer 插件环境误报。 - 保留旧包、旧 View 和旧 helper 命名空间的防回归检查。
60 lines
941 B
PHP
60 lines
941 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace think\admin\model;
|
|
|
|
class SystemAuth extends \plugin\system\model\SystemAuth
|
|
{
|
|
}
|
|
|
|
class SystemBase extends \plugin\system\model\SystemBase
|
|
{
|
|
}
|
|
|
|
class SystemFile extends \plugin\system\model\SystemFile
|
|
{
|
|
}
|
|
|
|
class SystemMenu extends \plugin\system\model\SystemMenu
|
|
{
|
|
}
|
|
|
|
class SystemNode extends \plugin\system\model\SystemNode
|
|
{
|
|
}
|
|
|
|
class SystemOplog extends \plugin\system\model\SystemOplog
|
|
{
|
|
}
|
|
|
|
class SystemQueue extends \plugin\worker\model\SystemQueue
|
|
{
|
|
}
|
|
|
|
class SystemUser extends \plugin\system\model\SystemUser
|
|
{
|
|
}
|
|
|
|
namespace think\admin\service;
|
|
|
|
class AdminService extends \plugin\system\service\AuthService
|
|
{
|
|
}
|
|
|
|
class CaptchaService extends \plugin\system\service\CaptchaService
|
|
{
|
|
}
|
|
|
|
class MenuService extends \plugin\system\service\MenuService
|
|
{
|
|
}
|
|
|
|
class ProcessService extends \plugin\worker\service\ProcessService
|
|
{
|
|
}
|
|
|
|
class SystemService extends \plugin\system\service\SystemService
|
|
{
|
|
}
|