Skip to content

Commit 3a56997

Browse files
Fix cs
1 parent 84f0514 commit 3a56997

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Type/Php/ReplaceFunctionsDynamicReturnTypeExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ private function getPreliminarilyResolvedTypeFromFunctionCall(
103103
// `strtr` has two signatures: `strtr($string1, $string2, $string3)` and `strtr($string1, $array)`
104104
$secondArgumentType = TypeCombinator::intersect(
105105
new ArrayType(new MixedType(), new MixedType()),
106-
$scope->getType($functionCall->getArgs()[1]->value)
106+
$scope->getType($functionCall->getArgs()[1]->value),
107107
);
108108
if ($secondArgumentType->isArray()->yes()) {
109109
$replaceArgumentType = $secondArgumentType->getIterableValueType();

0 commit comments

Comments
 (0)