From 69ab3b019279a2f116adc3e2b372f403892a0276 Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Mon, 1 Aug 2022 08:54:00 +0900
Subject: [PATCH] Issue #3299890 by andypost: Refactor views.views_data_helper
 service usage of self

---
 core/modules/views/src/ViewsDataHelper.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/modules/views/src/ViewsDataHelper.php b/core/modules/views/src/ViewsDataHelper.php
index f6522e46ca3a..9f561b7547fb 100644
--- a/core/modules/views/src/ViewsDataHelper.php
+++ b/core/modules/views/src/ViewsDataHelper.php
@@ -148,7 +148,7 @@ public function fetchFields($base, $type, $grouping = FALSE, $sub_type = NULL) {
           $strings += $this->fields[$base_table][$type];
         }
       }
-      uasort($strings, [self::class, 'fetchedFieldSort']);
+      uasort($strings, [$this, 'fetchedFieldSort']);
       return $strings;
     }
 
-- 
GitLab