Skip to content

Commit 75eacb4

Browse files
committed
Merge pull request #6 from Nyholm/hhvm
Added hhvm
2 parents f572c03 + 7ed0066 commit 75eacb4

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ php:
33
- 7.0
44
- 5.6
55
- 5.5
6+
- hhvm
67

78
services:
89
- redis-server
@@ -11,7 +12,7 @@ matrix:
1112
fast_finish: true
1213

1314
before_install:
14-
- phpenv config-rm xdebug.ini
15+
- if [[ $TRAVIS_PHP_VERSION != 'hhvm' ]]; then phpenv config-rm xdebug.ini; fi;
1516
- pip install --user codecov
1617

1718
before_script:

src/PredisCachePool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of php-cache\redis-adapter package.
4+
* This file is part of php-cache\predis-adapter package.
55
*
66
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
77
*

tests/IntegrationPoolTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of php-cache\redis-adapter package.
4+
* This file is part of php-cache\predis-adapter package.
55
*
66
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
77
*

tests/IntegrationTagTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of php-cache\redis-adapter package.
4+
* This file is part of php-cache\predis-adapter package.
55
*
66
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
77
*

0 commit comments

Comments
 (0)