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