mirror of
https://gitee.com/ctexthuang/hyperf-micro-svc.git
synced 2026-02-08 10:20:16 +08:00
16 lines
252 B
PHP
16 lines
252 B
PHP
<?php
|
|
|
|
namespace App\Lib\Return;
|
|
|
|
class AdminReturn extends CommonReturn
|
|
{
|
|
/**
|
|
* 通用返回
|
|
* @param array $res
|
|
* @return array
|
|
*/
|
|
final protected function afterSuccess(array $res): array
|
|
{
|
|
return $res;
|
|
}
|
|
} |