Merge pull request #23956 from agh1/5.51.0-releasenotes-final
[civicrm-core.git] / CRM / Event / WorkflowMessage / EventOfflineReceipt.php
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
12 use Civi\WorkflowMessage\GenericWorkflowMessage;
13
14 /**
15 * Receipt sent when confirming a back office participation record.
16 *
17 * @support template-only
18 *
19 * @see CRM_Event_Form_Participant::submit()
20 * @see CRM_Event_Form_ParticipantFeeSelection::emailReceipt
21 */
22 class CRM_Event_WorkflowMessage_EventOfflineReceipt extends GenericWorkflowMessage {
23 use CRM_Event_WorkflowMessage_ParticipantTrait;
24 public const WORKFLOW = 'event_offline_receipt';
25
26 }