mediawiki-extensions-Echo/includes/EmailFrequency.php
Reedy a101ce674c Fix and disable some phpcs exclusions
Change-Id: I2ecaf71c8836d627f20629d667b78ffbf420e4ee
2022-11-12 17:58:13 +00:00

24 lines
352 B
PHP

<?php
class EchoEmailFrequency {
/**
* 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;
}