Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); namespace Yansongda\Pay\Plugin\Alipay\V2\Pay\Authorizatio..
Decoded Output download
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Alipay\V2\Pay\Authorization\Pay;
use Closure;
use Yansongda\Artful\Contract\PluginInterface;
use Yansongda\Artful\Logger;
use Yansongda\Artful\Rocket;
/**
* @see https://opendocs.alipay.com/open/064jho?pathHash=1e92f707&ref=api&scene=common
*/
class RefundPlugin implements PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket
{
Logger::debug('[Alipay][Pay][Authorization][Pay][RefundPlugin] ', ['rocket' => $rocket]);
$rocket->mergePayload([
'method' => 'alipay.trade.refund',
'biz_content' => $rocket->getParams(),
]);
Logger::info('[Alipay][Pay][Authorization][Pay][RefundPlugin] ', ['rocket' => $rocket]);
return $next($rocket);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Alipay\V2\Pay\Authorization\Pay;
use Closure;
use Yansongda\Artful\Contract\PluginInterface;
use Yansongda\Artful\Logger;
use Yansongda\Artful\Rocket;
/**
* @see https://opendocs.alipay.com/open/064jho?pathHash=1e92f707&ref=api&scene=common
*/
class RefundPlugin implements PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket
{
Logger::debug('[Alipay][Pay][Authorization][Pay][RefundPlugin] ', ['rocket' => $rocket]);
$rocket->mergePayload([
'method' => 'alipay.trade.refund',
'biz_content' => $rocket->getParams(),
]);
Logger::info('[Alipay][Pay][Authorization][Pay][RefundPlugin] ', ['rocket' => $rocket]);
return $next($rocket);
}
}
Function Calls
None |
Stats
MD5 | 67014178bcbcafe2e02ddd49acf8216e |
Eval Count | 0 |
Decode Time | 80 ms |