Skip to content

Commit fa4ea12

Browse files
committed
fix phpcs ignore argument
1 parent 051b0b9 commit fa4ea12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ clean:
141141
# Fix code style violations
142142
.PHONY: codefix
143143
codefix:
144-
./vendor/bin/phpcbf --ignore="./vendor/" --standard=psr12 src test
144+
./vendor/bin/phpcbf --ignore="\./vendor/" --standard=psr12 src test
145145

146146
# Build a DEB package for Debian-like Linux distributions
147147
.PHONY: deb
@@ -214,7 +214,7 @@ endif
214214
# Test source code for coding standard violations
215215
.PHONY: lint
216216
lint:
217-
./vendor/bin/phpcs --ignore="./vendor/" --standard=phpcs.xml src test
217+
./vendor/bin/phpcs --ignore="\./vendor/" --standard=phpcs.xml src test
218218
./vendor/bin/phpmd src text codesize,unusedcode,naming,design --exclude */vendor/*
219219
./vendor/bin/phpmd test text unusedcode,naming,design --exclude */vendor/*
220220
php -r 'exit((int)version_compare(PHP_MAJOR_VERSION, "7", ">"));' || ./vendor/phpstan.phar analyse

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.26
1+
2.0.27

0 commit comments

Comments
 (0)