1 <?php
2
3 /**
4 * ArangoDB PHP Core Client: Response Interface
5 *
6 * @author Frank Mayer
7 * @copyright Copyright 2013-2015, FRANKMAYER.NET, Athens, Greece
8 */
9
10 namespace frankmayer\ArangoDbPhpCore\Protocols;
11
12 /**
13 * A Response Interface
14 *
15 * @package frankmayer\ArangoDbPhpCore\Protocols
16 */
17 interface ResponseInterface
18 {
19 /**
20 * Build a response-object from the request-object, which holds the result of the executed request
21 *
22 * @param $request
23 *
24 * @return mixed
25 */
26 public function build($request);
27 }
28