Files
hdk-core/src/Resource/ClassicResponse.php
2023-01-09 18:22:10 +08:00

30 lines
556 B
PHP

<?php
/**
* ClassicResponse.php@hyperf-development-kit
*
* @author 李东云<dongyun.li@luxcreo.cn>
* Powered by PhpStorm
* Created on 2022/5/6
*/
namespace Singularity\HDK\Core\Resource;
/**
* 使用经典方式响应
* Singularity\HDK\Utils\Resource\ClassicResponse@hyperf-development-kit
*
* @author 李东云<dongyun.li@luxcreo.cn>
* Powered by PhpStorm
* Created on 2022/5/6
*/
trait ClassicResponse
{
public function with(): array
{
return [
'code' => 200,
'message' => 'ok',
];
}
}