We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cee6711 commit 39611d2Copy full SHA for 39611d2
bin/phpdoc.sh
100644
100755
@@ -3,6 +3,7 @@
3
IGNORED_FILES=$1
4
PHPDOC_TAG=$2
5
6
+# shellcheck disable=SC2089
7
GENERATOR_DOCKER_APP_ARGS="--target=/result --directory=/data --cache-folder=/tmp -v --template=xml --ansi --no-interaction --ignore=\"vendor/**\""
8
if [ "$IGNORED_FILES" != "" ]; then
9
while read -r line
@@ -11,6 +12,7 @@ if [ "$IGNORED_FILES" != "" ]; then
11
12
done <<< "$IGNORED_FILES"
13
fi;
14
15
+# shellcheck disable=SC2086 disable=SC1101 disable=SC2090
16
docker run \
17
--rm \
18
-v ${PWD}:/data \
0 commit comments