Files
amb_wechatapp/extend/TuzhiEasyWeChat/Channels/Server/Handlers/EchoStrHandler.php
T

50 lines
1020 B
PHP

<?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);
}
}
}