Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
EmailFrequency
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace MediaWiki\Extension\Notifications;
4
5class EmailFrequency {
6    /**
7     * Never send email notifications
8     */
9    public const NEVER = -1;
10
11    /**
12     * Send email notifications immediately as they come in
13     */
14    public const IMMEDIATELY = 0;
15
16    /**
17     * Send daily email digests
18     */
19    public const DAILY_DIGEST = 1;
20
21    /**
22     * Send weekly email digests
23     */
24    public const WEEKLY_DIGEST = 7;
25}