Skip to content
Snippets Groups Projects

Check php linter

Merged Imported Cato Kolås requested to merge check-php-linter into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -15,7 +15,7 @@ stages:
image: registry.gitlab.com/pipeline-components/php-codesniffer:latest
script:
- |
find . -name "*.php" -or -name "*.module" -o "*.inc"|while read -r filename; do
find . -name "*.php" -or -name "*.module" -o -name "*.inc"|while read -r filename; do
php -l "$filename"
done
Loading