Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
ContributeCardActionLink
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace MediaWiki\Specials\Contribute\Card;
4
5class ContributeCardActionLink extends ContributeCardAction {
6
7    /**
8     * @inheritDoc
9     */
10    public function __construct( string $action, string $actionText ) {
11        parent::__construct( $action, $actionText, 'link' );
12    }
13}