去除不需要的打印

This commit is contained in:
lingling 2025-02-21 17:19:45 +08:00
parent 115b19f565
commit a12ce6b174
3 changed files with 2 additions and 3 deletions

View File

@ -50,7 +50,7 @@ class WithdrawController
if (!empty($data['username'])) {
$query->where('username', 'like', '%' . $data['username'] . '%');
}
var_dump($data['updatedat']);
// var_dump($data['updatedat']);
// 根据 status 过滤,假设 status 字段存在并且不是 -1
if (isset($data['status']) && $data['status'] != -1) {
$status = (int)$data['status']; // 强制转换为整数

View File

@ -17,7 +17,7 @@ class PayController
{
/**
* @Apidoc\Title("查询账户信息")
* @Apidoc\Title("不知道干什么的 请求货币类型吧")
* @Apidoc\Url("api/pay/lists")
* @Apidoc\Method("POST")
*/

View File

@ -22,7 +22,6 @@ class JwtAuthMiddleware implements MiddlewareInterface
public function process(Request $request, callable $handler): Response
{
/**
* 通过反射获取不需要登录的方法
*/