24 lines
486 B
PHP
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);
|
|
}
|
|
}
|
|
|
|
} |