Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 3 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
InvalidLogType | |
0.00% |
0 / 3 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
getLogType | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace MediaWiki\Extension\Thanks\Storage\Exceptions; |
4 | |
5 | use Exception; |
6 | |
7 | class InvalidLogType extends Exception { |
8 | private string $logType; |
9 | |
10 | public function __construct( string $logType ) { |
11 | parent::__construct(); |
12 | $this->logType = $logType; |
13 | } |
14 | |
15 | public function getLogType(): string { |
16 | return $this->logType; |
17 | } |
18 | } |