Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
ConfigNames
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3// phpcs:disable Generic.NamingConventions.UpperCaseConstantName.ClassConstantNotUpperCase
4namespace MediaWiki\Extension\Notifications;
5
6/**
7 * A class containing constants representing the names of configuration variables,
8 * to protect against typos.
9 *
10 * @since 1.41
11 */
12class ConfigNames {
13    public const CrossWikiNotifications = 'EchoCrossWikiNotifications';
14    public const EnableEmailBatch = 'EchoEnableEmailBatch';
15    public const EnablePush = 'EchoEnablePush';
16    public const NotificationCategories = 'EchoNotificationCategories';
17    public const NotificationIcons = 'EchoNotificationIcons';
18    public const Notifications = 'EchoNotifications';
19    public const Notifiers = 'EchoNotifiers';
20    public const PerUserBlacklist = 'EchoPerUserBlacklist';
21    public const PollForUpdates = 'EchoPollForUpdates';
22    public const SecondaryIcons = 'EchoSecondaryIcons';
23    public const WatchlistEmailOncePerPage = 'EchoWatchlistEmailOncePerPage';
24    public const WatchlistNotifications = 'EchoWatchlistNotifications';
25}