for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace EasyWeChat\Payment\Notify;
use Closure;
use EasyWeChat\Kernel\Support\XML;
class Refunded extends Handler
{
protected $check = false;
/**
* @param \Closure $closure
* @return \Symfony\Component\HttpFoundation\Response
public function handle(Closure $closure)
$this->strict(
$closure->bindTo($this)->__invoke($this->getMessage(), [$this, 'fail'])
);
return $this->toResponse();
}
* Decrypt the `req_info` from request message.
* @return array
public function reqInfo()
return XML::parse($this->decryptMessage('req_info'));