mediawiki-extensions-Echo/includes/EmailFrequency.php
Reedy 2afb728a10 Fix PSR12.Properties.ConstantVisibility.NotFound
Bug: T253169
Change-Id: I506e43629a30ef34c9154b8212878255de7d90b9
2020-09-19 21:26:38 +00:00

9 lines
305 B
PHP

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