Exclude autoload_static.php from PHP syntax check
authorTim Düsterhus <duesterhus@woltlab.com>
Thu, 2 Jun 2016 22:43:06 +0000 (00:43 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Thu, 2 Jun 2016 22:43:06 +0000 (00:43 +0200)
The file is only used when PHP 5.6 is detected and
thus causes a false positive.

.travis.yml

index 1ff1b4bf2fd0b065e857f44ad9c9326d86c1c73e..14954657ad9ed633e34753037561bdffacd8b416 100644 (file)
@@ -7,5 +7,5 @@ before_install:
   - pyrus install pear/PHP_CodeSniffer
   - phpenv rehash
 script:
-  - find . -type f -name '*.php' -print0 |xargs -0 -I file -P 4 php -l file > /dev/null
+  - find . -type f -name '*.php' -not -path './wcfsetup/install/files/lib/system/api/composer/autoload_static.php' -print0 |xargs -0 -I file -P 4 php -l file > /dev/null
   - phpcs -p --extensions=php --standard="`pwd`/CodeSniff/WCF" .