Skip to content

Commit 2054986

Browse files
committed
Fix bracket
1 parent 585b7fa commit 2054986

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Core/JVM/Invoker/Invokable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function call(string $name, ...$arguments)
9292
$convertedPassedArguments = $this->stringifyArguments(...$arguments);
9393

9494
$method = $operationCache->fetchOrPush(
95-
"{$name}.$convertedPassedArguments",
95+
"{$name}.{$convertedPassedArguments}",
9696
function () use ($name, $arguments) {
9797
return $this->findMethod(
9898
$name,

0 commit comments

Comments
 (0)