Skip to content

Commit

Permalink
fix CS style error
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Dec 6, 2023
1 parent 5bd40f4 commit cff8a7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ public function leaveNode(Node $node)
private function isStringInterpolationSyntax(Node $node): bool
{
$i = $node->getAttribute('startTokenPos');
return ($node instanceof Node\Scalar\Encapsed && $this->tokens[$i+1][1] == '${');
return ($node instanceof Node\Scalar\Encapsed && $this->tokens[$i + 1][1] == '${');
}
}

0 comments on commit cff8a7a

Please sign in to comment.