This repository has been archived on 2021-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pingan_unionpay/app/Http/WechatHandlers/TextMessageHandler.php
2020-08-06 16:42:18 +08:00

16 lines
310 B
PHP

<?php
namespace App\Http\WechatHandlers;
use EasyWeChat\Kernel\Contracts\EventHandlerInterface;
class TextMessageHandler implements EventHandlerInterface
{
public function handle($payload = null)
{
return '您的留言已经收到';
return $payload->Content;
}
}