Skip to content

Commit 3f60dde

Browse files
Cleanup no more php cs fixer exclusion for PHP 8.4
1 parent f29a37f commit 3f60dde

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/php.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,6 @@ jobs:
7878
- "8.2"
7979
- "8.3"
8080
- "8.4"
81-
### Exclude PHP 8.4 for php-c-fixers as there is currently no support
82-
exclude:
83-
- command: "test:phpcs"
84-
php-version: "8.4"
8581

8682
steps:
8783
-

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
],
100100
"test:phpcs": [
101101
"[ -e .Build/bin/php-cs-fixer ] || composer update",
102-
"export PHP_CS_FIXER_IGNORE_ENV=1 && .Build/bin/php-cs-fixer fix -v --dry-run --diff"
102+
".Build/bin/php-cs-fixer fix -v --dry-run --diff"
103103
],
104104
"test:rector": [
105105
"[ -e .Build/bin/rector ] || composer update",
@@ -136,7 +136,7 @@
136136
],
137137
"fix:phpcs": [
138138
"[ -e .Build/bin/php-cs-fixer ] || composer update",
139-
"export PHP_CS_FIXER_IGNORE_ENV=1 && .Build/bin/php-cs-fixer fix -v"
139+
".Build/bin/php-cs-fixer fix -v"
140140
],
141141
"fix:rector": [
142142
"[ -e .Build/bin/rector ] || composer update",

0 commit comments

Comments
 (0)