Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 7 |
|
0.00% |
0 / 7 |
CRAP | |
0.00% |
0 / 1 |
HTMLIFrameElement | |
0.00% |
0 / 7 |
|
0.00% |
0 / 7 |
56 | |
0.00% |
0 / 1 |
_unimplemented | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
getSrc | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setSrc | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getSandbox | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getContentDocument | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getSVGDocument | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getLongDesc | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setLongDesc | |
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\Document; |
10 | use Wikimedia\IDLeDOM\DOMTokenList; |
11 | |
12 | trait HTMLIFrameElement { |
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 getSrc(): string { |
30 | throw self::_unimplemented(); |
31 | } |
32 | |
33 | /** |
34 | * @param string $val |
35 | */ |
36 | public function setSrc( string $val ): void { |
37 | throw self::_unimplemented(); |
38 | } |
39 | |
40 | /** |
41 | * @return DOMTokenList |
42 | */ |
43 | public function getSandbox() { |
44 | throw self::_unimplemented(); |
45 | } |
46 | |
47 | /** |
48 | * @return Document|null |
49 | */ |
50 | public function getContentDocument() { |
51 | throw self::_unimplemented(); |
52 | } |
53 | |
54 | /** |
55 | * @return Document|null |
56 | */ |
57 | public function getSVGDocument() { |
58 | throw self::_unimplemented(); |
59 | } |
60 | |
61 | /** |
62 | * @return string |
63 | */ |
64 | public function getLongDesc(): string { |
65 | throw self::_unimplemented(); |
66 | } |
67 | |
68 | /** |
69 | * @param string $val |
70 | */ |
71 | public function setLongDesc( string $val ): void { |
72 | throw self::_unimplemented(); |
73 | } |
74 | |
75 | } |