Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
UnexpectedSectionAnchorException | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | declare( strict_types=1 ); |
4 | |
5 | namespace MediaWiki\Extension\CampaignEvents\MWEntity; |
6 | |
7 | class UnexpectedSectionAnchorException extends InvalidEventPageException { |
8 | /** |
9 | * @param string $fragment |
10 | */ |
11 | public function __construct( string $fragment ) { |
12 | parent::__construct( "Unexpectedly got a page with a section fragment: `$fragment`" ); |
13 | } |
14 | } |