mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-19 03:11:29 +00:00
9 lines
145 B
PHP
9 lines
145 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Notifications;
|
|
|
|
class EmailFormat {
|
|
public const HTML = 'html';
|
|
public const PLAIN_TEXT = 'plain-text';
|
|
}
|