Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | trait HasDocumentFunctions |
||
13 | { |
||
14 | /** |
||
15 | * Calculate the distance between two coordinates with the Haversine formula. |
||
16 | * |
||
17 | * @link https://www.arangodb.com/docs/stable/aql/functions-document.html#merge |
||
18 | * |
||
19 | * @param array $documents |
||
20 | * @return FunctionExpression |
||
21 | */ |
||
22 | public function merge(...$documents) |
||
27 |