Commit f2cfcf8c authored by catch's avatar catch
Browse files

Issue #3299890 by andypost: Refactor views.views_data_helper service usage of self

(cherry picked from commit 69ab3b01)
parent 7c1c60ec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }