Files
cunkebao_v3/Server/thinkphp/library/think/route/dispatch/Response.php
笔记本里的永平 5b8969f4a6 feat: 本次提交更新内容如下
数据同步
2025-07-07 14:10:31 +08:00

24 lines
763 B
PHP

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace think\route\dispatch;
use think\route\Dispatch;
class Response extends Dispatch
{
public function exec()
{
return $this->dispatch;
}
}