Skip to content

Commit 74b1104

Browse files
committed
Minor changes for hhvm support.
1 parent c58cd7f commit 74b1104

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ php:
44
- 5.3
55
- 5.4
66
- 5.5
7+
- hhvm
78

89
before_script:
910
- chmod 777 ./tests/travis/setup_arangodb.sh

examples/init.php

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

1313
/* set up connection options */
1414
$connectionOptions = array(
15-
ConnectionOptions::OPTION_ENDPOINT => 'tcp://localhost:8529/', // endpoint to connect to
15+
ConnectionOptions::OPTION_ENDPOINT => 'tcp://localhost:8529', // endpoint to connect to
1616
ConnectionOptions::OPTION_CONNECTION => 'Close', // can use either 'Close' (one-time connections) or 'Keep-Alive' (re-used connections)
1717
ConnectionOptions::OPTION_AUTH_TYPE => 'Basic', // use basic authorization
1818
/*

tests/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function getConnectionOptions()
2222
};
2323

2424
return array(
25-
ConnectionOptions::OPTION_ENDPOINT => 'tcp://localhost:8529/',
25+
ConnectionOptions::OPTION_ENDPOINT => 'tcp://localhost:8529',
2626
// endpoint to connect to
2727
ConnectionOptions::OPTION_CONNECTION => 'Close',
2828
// can use either 'Close' (one-time connections) or 'Keep-Alive' (re-used connections)

0 commit comments

Comments
 (0)