Merge pull request #22752 from eileenmcnaughton/grumpit
[civicrm-core.git] / CRM / Pledge / WorkflowMessage / PledgeReminder.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 * Reminder pledger that a payment is due.
16 *
17 * @support template-only
18 * @see CRM_Pledge_BAO_Pledge::updatePledgeStatus
19 */
20 class CRM_Pledge_WorkflowMessage_PledgeReminder extends GenericWorkflowMessage {
21
22 public const WORKFLOW = 'pledge_reminder';
23
24 }