Файл: monst/Xsolla/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php
Строк: 22
<?php
namespace GuzzleServiceCommandLocationVisitorRequest;
use GuzzleHttpMessageRequestInterface;
use GuzzleServiceCommandCommandInterface;
use GuzzleServiceDescriptionParameter;
/**
* Visitor used to change the location in which a response body is saved
*/
class ResponseBodyVisitor extends AbstractRequestVisitor
{
public function visit(CommandInterface $command, RequestInterface $request, Parameter $param, $value)
{
$request->setResponseBody($value);
}
}