Fix merge errors

This commit is contained in:
Tony Murray
2016-08-19 14:05:27 -05:00
parent cfe2cf8069
commit 46adc8b60c

View File

@@ -21,7 +21,7 @@ matrix:
- php: 5.6
env:
PHP_L=1
PHPCS=1
PHP_CS=1
EXECUTE_BUILD_DOCS=true
- php: hhvm
env:
@@ -46,5 +46,5 @@ after_success:
script:
- if [[ $PHP_L == 1 ]]; then find . -path './vendor' -prune -o -name "*.php" -print0 | xargs -0 -n1 -P8 php -l | grep -v '^No syntax errors detected' ; test $? -eq 1; fi
- if [[ $PHP_L_OLD == 1 ]]; then find . -regextype posix-extended -regex "\./(lib/influxdb-php|vendor)" -prune -o -name "*.php" -print0 | xargs -0 -n1 -P8 php -l | grep -v '^No syntax errors detected' ; test $? -eq 1; fi
- if [[ $PHP_CS == 1 ]]; then vendor/bin/phpcs -n -p --colors --extensions=php --standard=PSR2 --ignore=html/lib/* .; fi
- if [[ $PHP_CS == 1 ]]; then vendor/bin/phpcs -n -p --colors --extensions=php --standard=PSR2 --ignore=html/lib/* html; fi
- phpunit