Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 5 |
|
0.00% |
0 / 5 |
CRAP | |
0.00% |
0 / 1 |
HTMLAnchorElement | |
0.00% |
0 / 5 |
|
0.00% |
0 / 5 |
30 | |
0.00% |
0 / 1 |
_unimplemented | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
getPing | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setPing | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getRelList | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getText | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setText | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | // AUTOMATICALLY GENERATED. DO NOT EDIT. |
4 | // Use `composer build` to regenerate. |
5 | |
6 | namespace Wikimedia\IDLeDOM\Stub; |
7 | |
8 | use Exception; |
9 | use Wikimedia\IDLeDOM\DOMTokenList; |
10 | |
11 | trait HTMLAnchorElement { |
12 | // use \Wikimedia\IDLeDOM\Stub\HTMLHyperlinkElementUtils; |
13 | // use \Wikimedia\IDLeDOM\Stub\ReferrerPolicy; |
14 | |
15 | // Underscore is used to avoid conflicts with DOM-reserved names |
16 | // phpcs:disable PSR2.Methods.MethodDeclaration.Underscore |
17 | // phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName |
18 | |
19 | /** |
20 | * @return Exception |
21 | */ |
22 | abstract protected function _unimplemented(): Exception; |
23 | |
24 | // phpcs:enable |
25 | |
26 | /** |
27 | * @return string |
28 | */ |
29 | public function getPing(): string { |
30 | throw self::_unimplemented(); |
31 | } |
32 | |
33 | /** |
34 | * @param string $val |
35 | */ |
36 | public function setPing( string $val ): void { |
37 | throw self::_unimplemented(); |
38 | } |
39 | |
40 | /** |
41 | * @return DOMTokenList |
42 | */ |
43 | public function getRelList() { |
44 | throw self::_unimplemented(); |
45 | } |
46 | |
47 | /** |
48 | * @return string |
49 | */ |
50 | public function getText(): string { |
51 | throw self::_unimplemented(); |
52 | } |
53 | |
54 | /** |
55 | * @param string $val |
56 | */ |
57 | public function setText( string $val ): void { |
58 | throw self::_unimplemented(); |
59 | } |
60 | |
61 | } |