Skip to content

Commit

Permalink
Merge pull request #22335 from braders/participant-static-method
Browse files Browse the repository at this point in the history
Correctly mark updateStatusMessage method as static
  • Loading branch information
demeritcowboy authored Dec 28, 2021
2 parents c0634a4 + 2b58cdf commit 67a24a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Event/BAO/Participant.php
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,7 @@ public static function sendTransitionParticipantMail(
*
* @return string
*/
public function updateStatusMessage($participantId, $statusChangeTo, $fromStatusId) {
public static function updateStatusMessage($participantId, $statusChangeTo, $fromStatusId) {
$statusMsg = NULL;
$results = self::transitionParticipants([$participantId],
$statusChangeTo, $fromStatusId, TRUE
Expand Down

0 comments on commit 67a24a0

Please sign in to comment.