Skip to content

Commit 6d380db

Browse files
committed
Corrected uppercase typo in function name.
1 parent e65f9fe commit 6d380db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/triagens/ArangoDb/GraphHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ public function getVertex($graphName, $vertexId, array $options = array())
265265
*
266266
* @since 1.2
267267
*/
268-
public function ReplaceVertex($graphName, $vertexId, Document $document, $options = array())
268+
public function replaceVertex($graphName, $vertexId, Document $document, $options = array())
269269
{
270270
$options = array_merge(array(self::OPTION_REVISION => false), $options);
271271

@@ -547,7 +547,7 @@ public function getEdge($graphName, $edgeId, array $options = array())
547547
*
548548
* @since 1.2
549549
*/
550-
public function ReplaceEdge($graphName, $edgeId, $label, Edge $document, $options = array())
550+
public function replaceEdge($graphName, $edgeId, $label, Edge $document, $options = array())
551551
{
552552
$options = array_merge(array(self::OPTION_REVISION => false), $options);
553553

0 commit comments

Comments
 (0)