multi-store/app/admin/controller/IndexController.php
mkm 35a646ca3e refactor(admin): 移除 IndexController 中的冗余参数
- 在 IndexController 类中的 demo2 方法中,移除了 success 方法的冗余参数 $res
- 优化了代码结构,提高了代码的可读性和维护性
2024-12-28 11:06:06 +08:00

33 lines
763 B
PHP

<?php
namespace app\admin\controller;
use app\api\logic\DemoLogic;
use app\common\service\pay\PayService;
class IndexController extends BaseAdminController
{
/**
* @notes 查询订单支付状态
*/
public function wechatQuery()
{
$order_no = $this->request->get('order_no');
$order = [
'out_trade_no' => $order_no,
];
$app = new PayService(0);
try {
$res = $app->wechat->query($order);
return $this->success('查询成功', $res->toArray());
} catch (\Exception $e) {
return $this->fail($e->extra['message']);
}
}
public function demo2()
{
$res=DemoLogic::test();
return $this->success('成功');
}
}