Файл: monst/Xsolla/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php
Строк: 25
<?php
namespace GuzzleServiceCommandLocationVisitorResponse;
use GuzzleHttpMessageResponse;
use GuzzleServiceDescriptionParameter;
use GuzzleServiceCommandCommandInterface;
/**
* Location visitor used to add the status code of a response to a key in the result
*/
class StatusCodeVisitor extends AbstractResponseVisitor
{
public function visit(
CommandInterface $command,
Response $response,
Parameter $param,
&$value,
$context = null
) {
$value[$param->getName()] = $response->getStatusCode();
}
}