初始化项目:添加后端代码、ThinkPHP框架、前端资源
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the overtrue/wechat.
|
||||
*
|
||||
* (c) overtrue <i@overtrue.me>
|
||||
*
|
||||
* This source file is subject to the MIT license that is bundled
|
||||
* with this source code in the file LICENSE.
|
||||
*/
|
||||
|
||||
namespace TuzhiEasyWeChat\Channels\Server\Handlers;
|
||||
|
||||
use TuzhiEasyWeChat\Kernel\Contracts\EventHandlerInterface;
|
||||
use TuzhiEasyWeChat\Kernel\Decorators\FinallyResult;
|
||||
use TuzhiEasyWeChat\Kernel\ServiceContainer;
|
||||
|
||||
/**
|
||||
* Class EchoStrHandler.
|
||||
*
|
||||
* @author overtrue <i@overtrue.me>
|
||||
*/
|
||||
class EchoStrHandler implements EventHandlerInterface
|
||||
{
|
||||
/**
|
||||
* @var ServiceContainer
|
||||
*/
|
||||
protected $app;
|
||||
|
||||
/**
|
||||
* EchoStrHandler constructor.
|
||||
*/
|
||||
public function __construct(ServiceContainer $app)
|
||||
{
|
||||
$this->app = $app;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $payload
|
||||
*
|
||||
* @return FinallyResult|null
|
||||
*/
|
||||
public function handle($payload = null)
|
||||
{
|
||||
if ($str = $this->app['request']->get('echostr')) {
|
||||
return new FinallyResult($str);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user