Skip to content

Commit bb4f688

Browse files
committed
Ignore php-cs-fixer env check until they support PHP 8.2
1 parent 389f39e commit bb4f688

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ ifeq ($(IS_PHP73),1)
3535
cs:
3636
else
3737
cs: tools/php-cs-fixer
38-
tools/php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi fix
38+
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi fix
3939
endif
4040
.PHONY: cs
4141

4242
ifeq ($(IS_PHP73),1)
4343
cs-fix:
4444
else
4545
cs-fix: tools/php-cs-fixer
46-
tools/php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
46+
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
4747
endif
4848
.PHONY: cs-fix
4949

0 commit comments

Comments
 (0)