From 9ff2c846dccd3f4dd6a23c583fd2cd6d6911896e Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Mon, 19 Sep 2022 20:39:23 +0100 Subject: [PATCH] Issue #3309750 by andypost, Berdir: Fix callable syntax for PHP 8.2 in Views.php --- core/modules/views/src/Views.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/views/src/Views.php b/core/modules/views/src/Views.php index 03218ac94e90..11b049ed27fa 100644 --- a/core/modules/views/src/Views.php +++ b/core/modules/views/src/Views.php @@ -308,7 +308,7 @@ public static function getViewsAsOptions($views_only = FALSE, $filter = 'all', $ case 'disabled': case 'enabled': $filter = ucfirst($filter); - $views = call_user_func("static::get{$filter}Views"); + $views = call_user_func(static::class . "::get{$filter}Views"); break; default: -- GitLab