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 968b9dd commit a798636Copy full SHA for a798636
.github/workflows/tests.yml
@@ -40,7 +40,7 @@ jobs:
40
tools: pecl, composer, php-cs-fixer
41
42
- name: Run PHP-CS-Fixer fix
43
- run: bin/php-cs-fixer-wrapper fix --dry-run --diff --ansi
+ run: PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run --diff --ansi
44
45
phpstan:
46
runs-on: ubuntu-latest
bin/php-cs-fixer-wrapper
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env bash
2
+
3
+# get parent dir, and run the php-cs-fixer
4
+PHP_CS_FIXER_IGNORE_ENV=1 "$(dirname "$0")/../vendor/bin/php-cs-fixer" "$@"
0 commit comments