mediawiki-extensions-Echo/includes/EmailFrequency.php
Reedy e576cbdca0 Namespace some more classes
Change-Id: If1405788a4adb550e8a7e8c58b0c2c55cf10ea67
2023-08-18 21:24:59 +01:00

26 lines
394 B
PHP

<?php
namespace MediaWiki\Extension\Notifications;
class EmailFrequency {
/**
* Never send email notifications
*/
public const NEVER = -1;
/**
* Send email notifications immediately as they come in
*/
public const IMMEDIATELY = 0;
/**
* Send daily email digests
*/
public const DAILY_DIGEST = 1;
/**
* Send weekly email digests
*/
public const WEEKLY_DIGEST = 7;
}