1 <?php
2 /**
3 * ArangoDB PHP Core Client: client
4 *
5 * @package frankmayer\ArangoDbPhpCore
6 * @author Frank Mayer
7 * @copyright Copyright 2013-2015, FRANKMAYER.NET, Athens, Greece
8 */
9
10 namespace frankmayer\ArangoDbPhpCore\Api;
11
12
13 /**
14 * A REST API Interface
15 *
16 * @package frankmayer\ArangoDbPhpCore\Api
17 */
18 interface RestApiInterface extends ApiInterface
19 {
20 /**
21 * @return RequestInterface
22 */
23 public function getRequest();
24
25 /**
26 * @return ResponseInterface
27 */
28 public function getResponse();
29 }
30