diff --git a/core/modules/views/src/Views.php b/core/modules/views/src/Views.php
index 03218ac94e90d30fcd92cafe3cc8a71ef3bf8485..11b049ed27fa881af1a2eb965fd992e5275c3075 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: