Fix indent

This commit is contained in:
Laurent Destailleur 2015-12-19 01:15:08 +01:00
parent b1b2038d71
commit 6ed87f43de

View File

@ -140,19 +140,19 @@ before_script:
- | - |
if [ "$DEBUG" = true ]; then if [ "$DEBUG" = true ]; then
# Check PHP # Check PHP
php -i php -i
# Check PHP CodeSniffer installation # Check PHP CodeSniffer installation
which phpcs which phpcs
phpcs --version phpcs --version
phpcs -i phpcs -i
# Check PHPUnit installation # Check PHPUnit installation
which phpunit which phpunit
phpunit --version phpunit --version
# Check MySQL # Check MySQL
mysql --version mysql --version
mysql -e "SELECT VERSION();" mysql -e "SELECT VERSION();"
echo echo
fi fi
- | - |