Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 21 |
|
0.00% |
0 / 21 |
CRAP | |
0.00% |
0 / 1 |
HTMLHyperlinkElementUtils | |
0.00% |
0 / 21 |
|
0.00% |
0 / 21 |
462 | |
0.00% |
0 / 1 |
_unimplemented | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
getHref | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setHref | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getOrigin | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getProtocol | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setProtocol | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getUsername | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setUsername | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getPassword | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setPassword | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getHost | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setHost | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getHostname | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setHostname | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getPort | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setPort | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getPathname | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setPathname | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getSearch | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setSearch | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getHash | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setHash | |
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 | |
10 | trait HTMLHyperlinkElementUtils { |
11 | |
12 | // Underscore is used to avoid conflicts with DOM-reserved names |
13 | // phpcs:disable PSR2.Methods.MethodDeclaration.Underscore |
14 | // phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName |
15 | |
16 | /** |
17 | * @return Exception |
18 | */ |
19 | abstract protected function _unimplemented(): Exception; |
20 | |
21 | // phpcs:enable |
22 | |
23 | /** |
24 | * @return string |
25 | */ |
26 | public function getHref(): string { |
27 | throw self::_unimplemented(); |
28 | } |
29 | |
30 | /** |
31 | * @param string $val |
32 | */ |
33 | public function setHref( string $val ): void { |
34 | throw self::_unimplemented(); |
35 | } |
36 | |
37 | /** |
38 | * @return string |
39 | */ |
40 | public function getOrigin(): string { |
41 | throw self::_unimplemented(); |
42 | } |
43 | |
44 | /** |
45 | * @return string |
46 | */ |
47 | public function getProtocol(): string { |
48 | throw self::_unimplemented(); |
49 | } |
50 | |
51 | /** |
52 | * @param string $val |
53 | */ |
54 | public function setProtocol( string $val ): void { |
55 | throw self::_unimplemented(); |
56 | } |
57 | |
58 | /** |
59 | * @return string |
60 | */ |
61 | public function getUsername(): string { |
62 | throw self::_unimplemented(); |
63 | } |
64 | |
65 | /** |
66 | * @param string $val |
67 | */ |
68 | public function setUsername( string $val ): void { |
69 | throw self::_unimplemented(); |
70 | } |
71 | |
72 | /** |
73 | * @return string |
74 | */ |
75 | public function getPassword(): string { |
76 | throw self::_unimplemented(); |
77 | } |
78 | |
79 | /** |
80 | * @param string $val |
81 | */ |
82 | public function setPassword( string $val ): void { |
83 | throw self::_unimplemented(); |
84 | } |
85 | |
86 | /** |
87 | * @return string |
88 | */ |
89 | public function getHost(): string { |
90 | throw self::_unimplemented(); |
91 | } |
92 | |
93 | /** |
94 | * @param string $val |
95 | */ |
96 | public function setHost( string $val ): void { |
97 | throw self::_unimplemented(); |
98 | } |
99 | |
100 | /** |
101 | * @return string |
102 | */ |
103 | public function getHostname(): string { |
104 | throw self::_unimplemented(); |
105 | } |
106 | |
107 | /** |
108 | * @param string $val |
109 | */ |
110 | public function setHostname( string $val ): void { |
111 | throw self::_unimplemented(); |
112 | } |
113 | |
114 | /** |
115 | * @return string |
116 | */ |
117 | public function getPort(): string { |
118 | throw self::_unimplemented(); |
119 | } |
120 | |
121 | /** |
122 | * @param string $val |
123 | */ |
124 | public function setPort( string $val ): void { |
125 | throw self::_unimplemented(); |
126 | } |
127 | |
128 | /** |
129 | * @return string |
130 | */ |
131 | public function getPathname(): string { |
132 | throw self::_unimplemented(); |
133 | } |
134 | |
135 | /** |
136 | * @param string $val |
137 | */ |
138 | public function setPathname( string $val ): void { |
139 | throw self::_unimplemented(); |
140 | } |
141 | |
142 | /** |
143 | * @return string |
144 | */ |
145 | public function getSearch(): string { |
146 | throw self::_unimplemented(); |
147 | } |
148 | |
149 | /** |
150 | * @param string $val |
151 | */ |
152 | public function setSearch( string $val ): void { |
153 | throw self::_unimplemented(); |
154 | } |
155 | |
156 | /** |
157 | * @return string |
158 | */ |
159 | public function getHash(): string { |
160 | throw self::_unimplemented(); |
161 | } |
162 | |
163 | /** |
164 | * @param string $val |
165 | */ |
166 | public function setHash( string $val ): void { |
167 | throw self::_unimplemented(); |
168 | } |
169 | |
170 | } |