From 4ab292758deb0645dd88b92046336367f1eb924c Mon Sep 17 00:00:00 2001 From: Jurian Sluiman Date: Mon, 12 Aug 2013 17:44:16 +0200 Subject: [PATCH] Use only CS on src dir --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b2c334a..96e39e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,4 +10,4 @@ before_script: script: - phpunit --configuration tests/phpunit.xml - - output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 .); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi; \ No newline at end of file + - output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 ./src); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;