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\Agreement\Pa..
Decoded Output download
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Alipay\V2\Pay\Agreement\Pay;
use Closure;
use Yansongda\Artful\Contract\PluginInterface;
use Yansongda\Artful\Logger;
use Yansongda\Artful\Rocket;
/**
* @see https://opendocs.alipay.com/open/07005f5c_alipay.trade.query?pathHash=aa8ed91c&ref=api&scene=common
*/
class QueryPlugin implements PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket
{
Logger::debug('[Alipay][Pay][Agreement][Pay][QueryPlugin] ', ['rocket' => $rocket]);
$rocket->mergePayload([
'method' => 'alipay.trade.query',
'biz_content' => $rocket->getParams(),
]);
Logger::info('[Alipay][Pay][Agreement][Pay][QueryPlugin] ', ['rocket' => $rocket]);
return $next($rocket);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Alipay\V2\Pay\Agreement\Pay;
use Closure;
use Yansongda\Artful\Contract\PluginInterface;
use Yansongda\Artful\Logger;
use Yansongda\Artful\Rocket;
/**
* @see https://opendocs.alipay.com/open/07005f5c_alipay.trade.query?pathHash=aa8ed91c&ref=api&scene=common
*/
class QueryPlugin implements PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket
{
Logger::debug('[Alipay][Pay][Agreement][Pay][QueryPlugin] ', ['rocket' => $rocket]);
$rocket->mergePayload([
'method' => 'alipay.trade.query',
'biz_content' => $rocket->getParams(),
]);
Logger::info('[Alipay][Pay][Agreement][Pay][QueryPlugin] ', ['rocket' => $rocket]);
return $next($rocket);
}
}
Function Calls
None |
Stats
MD5 | bf6028d4fc8b14dabac3f8e1506b3fbb |
Eval Count | 0 |
Decode Time | 88 ms |