Skip to content

Commit e131739

Browse files
committed
Fix
1 parent 94c9bce commit e131739

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Analyser/MutatingScope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ private function resolveType(string $exprString, Expr $node): Type
11331133
if ($part instanceof InterpolatedStringPart) {
11341134
$partType = new ConstantStringType($part->value);
11351135
} else {
1136-
$partType = $this->getType($part);
1136+
$partType = $this->getType($part)->toString();
11371137
}
11381138
if ($resultType === null) {
11391139
$resultType = $partType;

0 commit comments

Comments
 (0)