first commit

This commit is contained in:
2020-08-06 16:42:18 +08:00
commit eb792c34aa
12972 changed files with 1511424 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Http\WechatHandlers;
use EasyWeChat\Kernel\Contracts\EventHandlerInterface;
class LocationMessageHandler implements EventHandlerInterface
{
public function handle($payload = null)
{
$payload->ToUserName;
$payload->FromUserName;
$payload->CreateTime;
$payload->MsgId;
$payload->Latitude;
$payload->Longitude;
$payload->Precision;
return '上报位置消息';
}
}