Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 6 |
|
0.00% |
0 / 6 |
CRAP | |
0.00% |
0 / 1 |
MediaList | |
0.00% |
0 / 6 |
|
0.00% |
0 / 6 |
42 | |
0.00% |
0 / 1 |
_unimplemented | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
getMediaText | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setMediaText | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getLength | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
item | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
appendMedium | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
deleteMedium | |
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 MediaList { |
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 getMediaText(): string { |
27 | throw self::_unimplemented(); |
28 | } |
29 | |
30 | /** |
31 | * @param ?string $val |
32 | */ |
33 | public function setMediaText( ?string $val ): void { |
34 | throw self::_unimplemented(); |
35 | } |
36 | |
37 | /** |
38 | * @return int |
39 | */ |
40 | public function getLength(): int { |
41 | throw self::_unimplemented(); |
42 | } |
43 | |
44 | /** |
45 | * @param int $index |
46 | * @return ?string |
47 | */ |
48 | public function item( int $index ): ?string { |
49 | throw self::_unimplemented(); |
50 | } |
51 | |
52 | /** |
53 | * @param string $medium |
54 | * @return void |
55 | */ |
56 | public function appendMedium( string $medium ): void { |
57 | throw self::_unimplemented(); |
58 | } |
59 | |
60 | /** |
61 | * @param string $medium |
62 | * @return void |
63 | */ |
64 | public function deleteMedium( string $medium ): void { |
65 | throw self::_unimplemented(); |
66 | } |
67 | |
68 | } |