(NFC) MailingQueryEvent - Update docblock
[civicrm-core.git] / Civi / ActionSchedule / Events.php
CommitLineData
9c8748cc
TO
1<?php
2namespace Civi\ActionSchedule;
3
4class Events {
5
6 /**
bc2feeb1
TO
7 * @see \Civi\ActionSchedule\Event\MappingRegisterEvent
8 * @deprecated - You may simply use the event name directly. dev/core#1744
9c8748cc 9 */
fa6fce2f 10 const MAPPINGS = 'civi.actionSchedule.getMappings';
9c8748cc 11
f9ec2da6 12 /**
bc2feeb1
TO
13 * @see \Civi\ActionSchedule\Event\MailingQueryEvent
14 * @deprecated - You may simply use the event name directly. dev/core#1744
f9ec2da6 15 */
fa6fce2f 16 const MAILING_QUERY = 'civi.actionSchedule.prepareMailingQuery';
9c8748cc
TO
17
18}