1: <?php
2:
3: namespace Guzzle\Service\Command\LocationVisitor\Response;
4:
5: use Guzzle\Service\Command\CommandInterface;
6: use Guzzle\Http\Message\Response;
7: use Guzzle\Service\Description\Parameter;
8:
9: /**
10: * {@inheritdoc}
11: */
12: abstract class AbstractResponseVisitor implements ResponseVisitorInterface
13: {
14: /**
15: * {@inheritdoc}
16: * @codeCoverageIgnore
17: */
18: public function before(CommandInterface $command, array &$result) {}
19:
20: /**
21: * {@inheritdoc}
22: * @codeCoverageIgnore
23: */
24: public function after(CommandInterface $command) {}
25:
26: /**
27: * {@inheritdoc}
28: * @codeCoverageIgnore
29: */
30: public function visit(CommandInterface $command, Response $response, Parameter $param, &$value, $context = null) {}
31: }
32: