Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
SecurePollContent | |
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 | namespace MediaWiki\Extension\SecurePoll; |
4 | |
5 | use MediaWiki\Content\JsonContent; |
6 | |
7 | /** |
8 | * SecurePoll Content Model |
9 | * |
10 | * @file |
11 | * @ingroup Extensions |
12 | * @ingroup SecurePoll |
13 | * |
14 | * @author Brad Jorsch <bjorsch@wikimedia.org> |
15 | */ |
16 | class SecurePollContent extends JsonContent { |
17 | /** @inheritDoc */ |
18 | public function __construct( $text, $modelId = 'SecurePoll' ) { |
19 | parent::__construct( $text, $modelId ); |
20 | } |
21 | } |