Skip to content

Commit 285f6d9

Browse files
committed
bump deps
1 parent d9c3582 commit 285f6d9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
},
99
"require-dev": {
1010
"rector/rector-src": "dev-main",
11-
"phpunit/phpunit": "^11.4",
12-
"phpstan/phpstan": "^2.0",
13-
"symplify/easy-coding-standard": "^12.3",
11+
"phpunit/phpunit": "^11.5",
12+
"phpstan/phpstan": "^2.1",
13+
"phpecs/phpecs": "^2.0",
1414
"phpstan/extension-installer": "^1.4",
1515
"symplify/vendor-patches": "^11.3",
1616
"tracy/tracy": "^2.10",

rules/CodeQuality/Rector/MethodCall/AssertTrueFalseToSpecificMethodRector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ private function buildNewArguments(
216216
return [...$funcCallOrEmptyNodeArgs, ...$oldArguments];
217217
}
218218

219-
if (in_array($funcCallOrEmptyNodeName, ['is_a', 'str_contains'])) {
219+
if (in_array($funcCallOrEmptyNodeName, ['is_a', 'str_contains'], true)) {
220220
// flip arguments
221221
$newArgs = [$funcCallOrEmptyNodeArgs[1], $funcCallOrEmptyNodeArgs[0]];
222222

0 commit comments

Comments
 (0)