Skip to content

Commit 3ada511

Browse files
committed
BE => AE
1 parent 6edef99 commit 3ada511

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

lib/ArangoDBClient/AqlUserFunction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class AqlUserFunction
7575

7676

7777
/**
78-
* Initialise the AqlUserFunction object
78+
* Initialize the AqlUserFunction object
7979
*
8080
* The $attributesArray array can be used to specify the name and code for the user function in form of an array.
8181
*

lib/ArangoDBClient/Autoloader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Autoloader
3535
const EXTENSION = '.php';
3636

3737
/**
38-
* Initialise the autoloader
38+
* Initialize the autoloader
3939
*
4040
* @throws Exception
4141
* @return void

lib/ArangoDBClient/Cursor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ class Cursor implements \Iterator
176176
const ENTRY_BASEURL = 'baseurl';
177177

178178
/**
179-
* Initialise the cursor with the first results and some metadata
179+
* Initialize the cursor with the first results and some metadata
180180
*
181181
* @param Connection $connection - connection to be used
182182
* @param array $data - initial result data as returned by the server

lib/ArangoDBClient/Statement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ class Statement
257257
const ENTRY_TRANSACTION = 'transaction';
258258

259259
/**
260-
* Initialise the statement
260+
* Initialize the statement
261261
*
262262
* The $data property can be used to specify the query text and further
263263
* options for the query.

lib/ArangoDBClient/Transaction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class Transaction extends TransactionBase
7474
protected $_action;
7575

7676
/**
77-
* Initialise the transaction object
77+
* Initialize the transaction object
7878
*
7979
* The $transaction array can be used to specify the collections, action and further
8080
* options for the transaction in form of an array.

lib/ArangoDBClient/TransactionBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class TransactionBase
6363
const ENTRY_EXCLUSIVE = 'exclusive';
6464

6565
/**
66-
* Initialise the transaction object
66+
* Initialize the transaction object
6767
*
6868
* @param Connection $connection - the connection to be used
6969
*

lib/ArangoDBClient/Traversal.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ class Traversal
6161
protected $_action;
6262

6363
/**
64-
* Initialise the Traversal object
64+
* Initialize the Traversal object
6565
*
6666
* @param Connection $connection - the connection to be used
67-
* @param string $startVertex - user function initialization data
68-
* @param string $edgeCollection - user function initialization data
67+
* @param string $startVertex - start vertex id for query
68+
* @param string $edgeCollection - name of the underlying edge collection
6969
* @param array $options
7070
*
7171
* @throws \ArangoDBClient\ClientException

0 commit comments

Comments
 (0)