Файл: monst/Xsolla/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php
Строк: 35
<?php
namespace GuzzleServiceCommandLocationVisitorResponse;
use GuzzleServiceCommandCommandInterface;
use GuzzleHttpMessageResponse;
use GuzzleServiceDescriptionParameter;
/**
* {@inheritdoc}
* @codeCoverageIgnore
*/
abstract class AbstractResponseVisitor implements ResponseVisitorInterface
{
public function before(CommandInterface $command, array &$result) {}
public function after(CommandInterface $command) {}
public function visit(
CommandInterface $command,
Response $response,
Parameter $param,
&$value,
$context = null
) {}
}