for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Alipay\V2;
use Closure;
use GuzzleHttp\Psr7\Response;
use Yansongda\Artful\Contract\PluginInterface;
use Yansongda\Artful\Logger;
use Yansongda\Artful\Rocket;
use Yansongda\Supports\Arr;
class ResponseInvokeStringPlugin implements PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket
/* @var Rocket $rocket */
$rocket = $next($rocket);
Logger::debug('[Alipay][ResponseInvokeStringPlugin] 插件开始装载', ['rocket' => $rocket]);
$response = new Response(200, [], Arr::query($rocket->getPayload()->all()));
$rocket->setDestination($response);
Logger::info('[Alipay][ResponseInvokeStringPlugin] 插件装载完毕', ['rocket' => $rocket]);
return $rocket;
}