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