Files
shop-platform/src/app/event/message/MessageShopRefundAgree.php
2026-01-17 10:48:02 +08:00

24 lines
486 B
PHP

<?php
namespace app\event\message;
use app\model\order\OrderMessage;
use GuzzleHttp\Exception\GuzzleException;
class MessageShopRefundAgree
{
/**
* @param $param
* @return void|null
* @throws GuzzleException
*/
public function handle($param)
{
// 发送订单消息
if ($param["keywords"] == "ORDER_REFUND_AGREE") {
$model = new OrderMessage();
return $model->messageOrderRefundAgree($param);
}
}
}