From 06eeb1f2c16f936cbbe82c5bcf579cc6ce71060e Mon Sep 17 00:00:00 2001 From: Sjoerd van der Vis Date: Thu, 6 Jun 2019 14:57:44 +0200 Subject: [PATCH] Issue #3059892 by sjoerdvandervis: Added the static keyword to the statically called function --- .../social_profile_fields/src/SocialProfileFieldsBatch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/social_features/social_profile/modules/social_profile_fields/src/SocialProfileFieldsBatch.php b/modules/social_features/social_profile/modules/social_profile_fields/src/SocialProfileFieldsBatch.php index b36e651b67d..ee0d14a079f 100644 --- a/modules/social_features/social_profile/modules/social_profile_fields/src/SocialProfileFieldsBatch.php +++ b/modules/social_features/social_profile/modules/social_profile_fields/src/SocialProfileFieldsBatch.php @@ -59,7 +59,7 @@ public static function performFlush(array $pids, array $fields, array &$context) * @param string $operations * The operation performed. */ - public function performFlushFinishedCallback($success, array $results, $operations) { + public static function performFlushFinishedCallback($success, array $results, $operations) { // The 'success' parameter means no fatal PHP errors were detected. All // other error management should be handled using 'results'. if ($success) {