mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 10:49:37 +02:00
23 lines
584 B
PHP
23 lines
584 B
PHP
<?php
|
|
|
|
namespace Guzzle\Service\Command\LocationVisitor\Response;
|
|
|
|
use Guzzle\Http\Message\Response;
|
|
use Guzzle\Service\Description\Parameter;
|
|
use Guzzle\Service\Command\CommandInterface;
|
|
|
|
/**
|
|
* 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();
|
|
}
|
|
}
|