1 <?php
2 /**
3 * ArangoDB PHP Core Client: client
4 *
5 * @author Frank Mayer
6 * @copyright Copyright 2013-2015, FRANKMAYER.NET, Athens, Greece
7 */
8
9 namespace frankmayer\ArangoDbPhpCore\Api\Rest;
10
11 use frankmayer\ArangoDbPhpCore\Api\RestApiInterface;
12
13
14 /**
15 * Class Document
16 *
17 * @package frankmayer\ArangoDbPhpCore\Api\Rest
18 */
19 class Document extends
20 DocumentBase implements
21 RestApiInterface
22 {
23 use DocumentTrait;
24 }
25