Файл: monst/Xsolla/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php
Строк: 17
<?php
namespace GuzzleServiceCommandLocationVisitorRequest;
use GuzzleHttpMessageRequestInterface;
use GuzzleServiceCommandCommandInterface;
use GuzzleServiceDescriptionParameter;
/**
* Visitor used to apply a parameter to a request's query string
*/
class QueryVisitor extends AbstractRequestVisitor
{
public function visit(CommandInterface $command, RequestInterface $request, Parameter $param, $value)
{
$request->getQuery()->set($param->getWireName(), $this->prepareValue($value, $param));
}
}