Skip to content

Commit

Permalink
Fix: Explicitly reference configuration for friendsofphp/php-cs-fixer (
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored Sep 22, 2023
1 parent 00e61a0 commit 46d55a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: "Run php-cs-fixer"
run: |
vendor/bin/php-cs-fixer fix --ansi --diff --dry-run --verbose
vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.dist.php --diff --dry-run --verbose
- name: "Run php-cs-fixer for test code"
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ help:

.PHONY: cs
cs: vendor ## Fixes coding standard issues with php-cs-fixer
vendor/bin/php-cs-fixer fix --diff --verbose
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --diff --verbose
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.test.php --diff --verbose

.PHONY: coverage
Expand Down

0 comments on commit 46d55a7

Please sign in to comment.