We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2edef90 commit debd930Copy full SHA for debd930
pre-commit
@@ -20,9 +20,16 @@ then
20
NC='\033[0m'
21
fi
22
23
+# Use local or global phpcs. Local has the priority.
24
+GIT_DIR=$(git rev-parse --show-toplevel)
25
+PHPCS="phpcs"
26
+if [ -f "$GIT_DIR/vendor/bin/phpcs" ]; then
27
+ PHPCS="$GIT_DIR/vendor/bin/phpcs"
28
+fi
29
+
30
# Generate diff file from phpcs.
31
echo ${GREEN}Creating patch for staged files\(can take some time\).${NC}
-phpcs -p --report-diff=phpcspatch.diff $FILES
32
+$PHPCS -p --report-diff=phpcspatch.diff $FILES
33
34
# Check if there is anything to patch.
35
WORDS=$( cat phpcspatch.diff | wc -m )
0 commit comments