mirror of
http://124.126.16.154:8888/singularity/HyperfDevelopmentKitCore.git
synced 2026-01-15 07:15:06 +08:00
30 lines
556 B
PHP
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',
|
|
];
|
|
}
|
|
}
|