Merge pull request #21835 from wmortada/patch-1
[civicrm-core.git] / CRM / Event / WorkflowMessage / ParticipantTransferred.php
CommitLineData
0d6fa54d
EM
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12use Civi\WorkflowMessage\GenericWorkflowMessage;
13
14/**
15 * Notification that a registration has been transferred to a different person.
16 *
17 * @support template-only
18 *
19 * @see CRM_Event_BAO_Participant::sendTransitionParticipantMail
20 */
21class CRM_Event_WorkflowMessage_ParticipantTransferred extends GenericWorkflowMessage {
a8829c96 22 use CRM_Event_WorkflowMessage_ParticipantTrait;
0d6fa54d
EM
23
24 public const WORKFLOW = 'participant_transferred';
25
26}