From aa2830b3b148c3003f8f05c0145f6bb7022d1646 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Tue, 30 Apr 2024 15:39:49 +0100 Subject: [PATCH] Issue #3444264 by andypost: [PHP 8.4] ReflectionMethod constructor deprecated with one argument --- core/lib/Drupal/Component/Utility/ArgumentsResolver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Component/Utility/ArgumentsResolver.php b/core/lib/Drupal/Component/Utility/ArgumentsResolver.php index f009a5266fc6..da577f77290f 100644 --- a/core/lib/Drupal/Component/Utility/ArgumentsResolver.php +++ b/core/lib/Drupal/Component/Utility/ArgumentsResolver.php @@ -123,7 +123,7 @@ protected function getReflector(callable $callable) { return new \ReflectionMethod($callable[0], $callable[1]); } if (is_string($callable) && str_contains($callable, "::")) { - return new \ReflectionMethod($callable); + return PHP_VERSION_ID < 80300 ? new \ReflectionMethod($callable) : \ReflectionMethod::createFromMethodName($callable); } return new \ReflectionFunction($callable); } -- GitLab