16 lines
295 B
PHP
16 lines
295 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;
|
|
}
|
|
}
|