0
0

更新代码

This commit is contained in:
2020-08-04 10:09:42 +08:00
parent 6118b5b63b
commit c2ac5d964e
478 changed files with 34410 additions and 0 deletions

View File

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