Skip to content

Commit d009762

Browse files
committed
Corrected minor errors that popped up in the documentation generation and made documentation a bit easier to read.
1 parent de3ffa1 commit d009762

38 files changed

+170
-74
lines changed

lib/triagens/ArangoDb/AdminHandler.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@
1313
namespace triagens\ArangoDb;
1414

1515
/**
16-
* An admin handler that utilizes the ArangoDB's Admin API. It does so by issuing the
17-
* appropriate HTTP requests to the server.
16+
* Provides access to ArangoDB's administration interface
17+
*
18+
* The admin handler utilizes ArangoDB's Admin API.<br>
19+
* <br>
1820
*
1921
* @package triagens\ArangoDb
2022
* @since 1.2

lib/triagens/ArangoDb/AqlUserFunction.php

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,36 @@
1010
namespace triagens\ArangoDb;
1111

1212
/**
13-
* Class AqlUserFunction
14-
*
15-
* AqlUserFunction object
16-
* An AqlUserFunction is an object that is used to manage AQL User Functions.
17-
* It registers, unregisters and lists user functions on the server
18-
*
19-
* The object encapsulates:
20-
*
21-
* * the name of the function
22-
* * the actual javascript function
23-
*
13+
* Provides management of user-functions
2414
*
15+
* AqlUserFunction object<br>
16+
* An AqlUserFunction is an object that is used to manage AQL User Functions.<br>
17+
* It registers, unregisters and lists user functions on the server<br>
18+
* <br>
19+
* The object encapsulates:<br>
20+
* <br>
21+
* <ul>
22+
* <li> the name of the function
23+
* <li> the actual javascript function
24+
* </ul>
25+
* <br>
2526
* The object requires the connection object and can be initialized
26-
* with or without initial configuration.
27-
* Any configuration can be set and retrieved by the object's methods like this:
28-
*
29-
* $this->setName('myFunctions:myFunction');
27+
* with or without initial configuration.<br>
28+
* <br>
29+
* Any configuration can be set and retrieved by the object's methods like this:<br>
30+
* <br>
31+
* <pre>
32+
* $this->setName('myFunctions:myFunction');<br>
3033
* $this->setCode('function (){your code};');
34+
* </pre>
3135
*
32-
* or like this:
33-
*
34-
* $this->name('myFunctions:myFunction');
36+
* <br>
37+
* or like this:<br>
38+
* <br>
39+
* <pre>
40+
* $this->name('myFunctions:myFunction');<br>
3541
* $this->code('function (){your code};');
36-
*
42+
* </pre>
3743
*
3844
* @property string $name - The name of the user function
3945
* @property string $code - The code of the user function

lib/triagens/ArangoDb/Autoloader.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111
namespace triagens\ArangoDb;
1212

1313
/**
14-
* Handles automatic loading of missing class files
14+
* Handles automatic loading of missing class files.
15+
*
1516
* The autoloader can be nested with other autoloaders. It will only
16-
* process classes from its own namespace and ignore all others.
17+
* process classes from its own namespace and ignore all others.<br>
18+
* <br>
1719
*
1820
* @package triagens\ArangoDb
1921
*/

lib/triagens/ArangoDb/Batch.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@
1414
/**
1515
* Provides batching functionality
1616
*
17+
* <br>
18+
*
1719
* @package triagens\ArangoDb
1820
* @example ArangoDb/examples/batch.php
19-
*
2021
*/
2122

2223

lib/triagens/ArangoDb/BatchPart.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
/**
1515
* Provides batch part functionality
1616
*
17-
* @package triagens\ArangoDb
17+
* <br>
1818
*
19+
* @package triagens\ArangoDb
1920
*/
2021

2122

lib/triagens/ArangoDb/BindVars.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212

1313
/**
1414
* A simple container for bind variables
15-
* This container also handles validation of the bind values.
15+
*
16+
* This container also handles validation of the bind values.<br>
17+
* <br>
1618
*
1719
* @package triagens\ArangoDb
1820
*/

lib/triagens/ArangoDb/ClientException.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@
1111
namespace triagens\ArangoDb;
1212

1313
/**
14+
* Client-Exception
15+
*
1416
* This exception type will be thrown by the client when there is an error
15-
* on the client side, i.e. something the server is not involved in.
17+
* on the client side, i.e. something the server is not involved in.<br>
18+
* <br>
1619
*
1720
* @package triagens\ArangoDb
1821
*/

lib/triagens/ArangoDb/Collection.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
/**
1414
* Value object representing a collection
1515
*
16+
* <br>
17+
*
1618
* @package triagens\ArangoDb
1719
*/
1820
class Collection

lib/triagens/ArangoDb/CollectionHandler.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111
namespace triagens\ArangoDb;
1212

1313
/**
14-
* A collection handler that fetches collection data from the server and
15-
* creates collections on the server. It does so by issuing the
16-
* appropriate HTTP requests to the server.
14+
* Provides management of collections
15+
*
16+
* The collection handler fetches collection data from the server and
17+
* creates collections on the server.<br>
18+
* <br>
1719
*
1820
* @package triagens\ArangoDb
1921
*/

lib/triagens/ArangoDb/ConnectException.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@
1111
namespace triagens\ArangoDb;
1212

1313
/**
14+
* Connect-Exception
15+
*
1416
* This exception type will be thrown by the client when there is an error
15-
* during connecting to the server
17+
* during connecting to the server.<br>
18+
* <br>
1619
*
1720
* @package triagens\ArangoDb
1821
*/

0 commit comments

Comments
 (0)