Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
GlobalDeleteLogFormatter | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
getMessageKey | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace MediaWiki\Extension\CentralAuth\LogFormatter; |
4 | |
5 | use LogFormatter; |
6 | |
7 | /** |
8 | * Handles the following log types: |
9 | * - globalauth/delete |
10 | * - suppress/cadelete |
11 | */ |
12 | class GlobalDeleteLogFormatter extends LogFormatter { |
13 | |
14 | /** @inheritDoc */ |
15 | protected function getMessageKey() { |
16 | return 'logentry-globalauth-delete'; |
17 | } |
18 | |
19 | } |