Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-07-10 18:17:45 +0300
committerJoas Schilling <coding@schilljs.com>2020-07-10 18:17:45 +0300
commitdf915c375b722c2f556cbee525632002049e682a (patch)
treee2c7b980eb018dbcacd17600a76c8cc17bce1711 /tests
parent862952c30e31c54bc4478bf2aebc06722dc834d1 (diff)
Linting is also done via github workflows already
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/scripts/lint-php.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/scripts/lint-php.sh b/tests/scripts/lint-php.sh
deleted file mode 100755
index afa2a6e..0000000
--- a/tests/scripts/lint-php.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env bash
-
-echo "travis_fold:start:lint.php"
-
-set -e
-
-cd ${BUILD_APP_MODULE_DIR}
-
-find . -name '*.php' -type f -not -path './vendor/*' -print0 | xargs --no-run-if-empty -0 -n1 -P8 php -l -d display_errors -d display_startup_errors 1>/dev/null
-
-echo "travis_fold:end:lint.php"