Skip to content

Commit e35448f

Browse files
authored
Fix mutation tests (#982)
1 parent 266f840 commit e35448f

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## v3.22.0
44
- NoPhpStormGeneratedCommentFixer - handle more comments
5+
- Update minimum PHP CS Fixer version to 3.59.0
56

67
## v3.21.0
78
- Deprecate PhpdocArrayStyleFixer - use "phpdoc_array_type"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"php": "^7.4 || ^8.0",
1414
"ext-filter": "*",
1515
"ext-tokenizer": "*",
16-
"friendsofphp/php-cs-fixer": "^3.50"
16+
"friendsofphp/php-cs-fixer": "^3.59"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "^9.6.4 || ^10.0.14"

src/Fixer/NoUselessParenthesisFixer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ private function isForbiddenBeforeOpenParenthesis(Tokens $tokens, int $index): b
132132
\T_VARIABLE,
133133
\T_WHILE,
134134
CT::T_CLASS_CONSTANT,
135-
CT::T_DOLLAR_CLOSE_CURLY_BRACES,
136135
])
137136
) {
138137
return true;

0 commit comments

Comments
 (0)