Skip to content

Commit 839c699

Browse files
committed
Remove difference
1 parent 65ca27e commit 839c699

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Compiler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ private function MustacheStatement(MustacheStatement $mustache): string
542542
return self::getRuntimeFunc($fn, $this->buildResolvedHbchCall($logicalName, $varPath, $compiledParams));
543543
}
544544
$args = array_map(fn($p) => $this->compileExpression($p), $mustache->params);
545-
$call = self::getRuntimeFunc('dv', "$varPath, " . implode(', ', $args));
545+
$call = self::getRuntimeFunc('dv', implode(', ', [$varPath, ...$args]));
546546
return self::getRuntimeFunc($fn, $call);
547547
}
548548
}

0 commit comments

Comments
 (0)