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\Ocr; use..
Decoded Output download
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Alipay\V2\Member\Ocr;
use Closure;
use Yansongda\Artful\Contract\PluginInterface;
use Yansongda\Artful\Logger;
use Yansongda\Artful\Rocket;
/**
* @see https://opendocs.alipay.com/open/0aggs5?pathHash=084101d3&ref=api
*/
class DetectPlugin implements PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket
{
Logger::debug('[Alipay][Member][Ocr][DetectPlugin] ', ['rocket' => $rocket]);
$rocket->mergePayload([
'method' => 'datadigital.fincloud.generalsaas.ocr.common.detect',
'biz_content' => $rocket->getParams(),
]);
Logger::info('[Alipay][Member][Ocr][DetectPlugin] ', ['rocket' => $rocket]);
return $next($rocket);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Alipay\V2\Member\Ocr;
use Closure;
use Yansongda\Artful\Contract\PluginInterface;
use Yansongda\Artful\Logger;
use Yansongda\Artful\Rocket;
/**
* @see https://opendocs.alipay.com/open/0aggs5?pathHash=084101d3&ref=api
*/
class DetectPlugin implements PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket
{
Logger::debug('[Alipay][Member][Ocr][DetectPlugin] ', ['rocket' => $rocket]);
$rocket->mergePayload([
'method' => 'datadigital.fincloud.generalsaas.ocr.common.detect',
'biz_content' => $rocket->getParams(),
]);
Logger::info('[Alipay][Member][Ocr][DetectPlugin] ', ['rocket' => $rocket]);
return $next($rocket);
}
}
Function Calls
None |
Stats
MD5 | cdcacf38b168239064c7c10ffb94ea80 |
Eval Count | 0 |
Decode Time | 94 ms |