Skip to content

Commit

Permalink
Fix: Remove environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Nov 27, 2023
1 parent 2f218a0 commit 32f0c40
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ coding-standards: vendor ## Lints YAML files with yamllint, normalizes composer.
yamllint -c .yamllint.yaml --strict .
composer normalize
mkdir -p .build/php-cs-fixer/
PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --verbose
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --verbose

.PHONY: dependency-analysis
dependency-analysis: phive vendor ## Runs a dependency analysis with maglnet/composer-require-checker
Expand Down
6 changes: 0 additions & 6 deletions test/EndToEnd/RuleSet/AbstractRuleSetTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ final public function testConfigurationIsConsideredValid(): void
self::configPath(),
],
null,
[
/**
* @see https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.13.1/php-cs-fixer#L31-L44
*/
'PHP_CS_FIXER_IGNORE_ENV' => true,
],
);

$process->run();
Expand Down

0 comments on commit 32f0c40

Please sign in to comment.