diff --git a/src/Support/Reflection.php b/src/Support/Reflection.php index 79342e74..8b8e73ae 100644 --- a/src/Support/Reflection.php +++ b/src/Support/Reflection.php @@ -38,7 +38,7 @@ final class Reflection method_exists($object, '__call') || method_exists($object, '__callStatic') ) { - return call_user_func_array([$object, $method], $args); + return $object->{$method}(...$args); } throw $exception;