Skip to content

Commit

Permalink
Fix php8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetik authored and caciobanu committed Jan 3, 2025
1 parent 21897cb commit dcd3eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Call/Handler/RuntimeCallHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private function executeCall(Call $call)

try {
$this->call = $call;
$return = call_user_func_array($callable, $arguments);
$return = call_user_func_array($callable, array_values($arguments));
} catch (Exception $caught) {
$exception = $caught;
}
Expand Down

0 comments on commit dcd3eba

Please sign in to comment.