Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jan 1, 2024
1 parent a9c7e1c commit f71aeb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Analyser/MutatingScope.php
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ private function resolveType(string $exprString, Expr $node): Type
if ($part instanceof InterpolatedStringPart) {
$partType = new ConstantStringType($part->value);
} else {
$partType = $this->getType($part);
$partType = $this->getType($part)->toString();
}
if ($resultType === null) {
$resultType = $partType;
Expand Down

0 comments on commit f71aeb5

Please sign in to comment.