We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c67a92c commit 0f1dbcbCopy full SHA for 0f1dbcb
2 files changed
.gitignore
@@ -23,3 +23,4 @@ Thumbs.db
23
!empty
24
/node_modules
25
/vendor
26
+composer.lock
.travis/script.sh
@@ -31,9 +31,9 @@ elif [ "${PHP_MD}" = '1' ]; then
31
32
vendor/bin/phpmd . text phpmd.xml --suffixes php --exclude "${excludePathsJoined}" || true;
33
elif [ "${PHP_STAN}" = '1' ]; then
34
- vendor/bin/phpstan analyse -c phpstan.neon -l 5 src/;
+ vendor/bin/phpstan analyse -c phpstan.neon -l 5 src/;
35
elif [ "${PHP_PHAN}" = '1' ]; then
36
- vendor/bin/phan;
+ vendor/bin/phan;
37
elif [ "${PHP_COVERAGE}" = '1' ]; then
38
vendor/bin/phpunit --coverage-clover=clover.xml;
39
else
0 commit comments