25 lines
508 B
PHP
25 lines
508 B
PHP
<?php
|
|
|
|
namespace app\event\message;
|
|
|
|
use app\model\order\OrderMessage;
|
|
|
|
/**
|
|
* 订单创建发送消息
|
|
*/
|
|
class MessageOrderPaySuccess
|
|
{
|
|
/**
|
|
* @param $param
|
|
* @return array|mixed|void
|
|
*/
|
|
public function handle($param)
|
|
{
|
|
trace($param, '订单创建发送消息event'.json_encode($param));
|
|
//发送订单消息
|
|
if ($param["keywords"] == "ORDER_PAY") {
|
|
$model = new OrderMessage();
|
|
$model->messagePaySuccess($param);
|
|
}
|
|
}
|
|
} |