Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 13 |
|
0.00% |
0 / 13 |
CRAP | |
0.00% |
0 / 1 |
TextTrackCue | |
0.00% |
0 / 13 |
|
0.00% |
0 / 13 |
182 | |
0.00% |
0 / 1 |
_unimplemented | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
getTrack | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getId | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setId | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getStartTime | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setStartTime | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getEndTime | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setEndTime | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getPauseOnExit | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setPauseOnExit | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getOnenter | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setOnenter | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getOnexit | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setOnexit | |
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\EventHandlerNonNull; |
10 | use Wikimedia\IDLeDOM\TextTrack; |
11 | |
12 | trait TextTrackCue { |
13 | |
14 | // Underscore is used to avoid conflicts with DOM-reserved names |
15 | // phpcs:disable PSR2.Methods.MethodDeclaration.Underscore |
16 | // phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName |
17 | |
18 | /** |
19 | * @return Exception |
20 | */ |
21 | abstract protected function _unimplemented(): Exception; |
22 | |
23 | // phpcs:enable |
24 | |
25 | /** |
26 | * @return TextTrack|null |
27 | */ |
28 | public function getTrack() { |
29 | throw self::_unimplemented(); |
30 | } |
31 | |
32 | /** |
33 | * @return string |
34 | */ |
35 | public function getId(): string { |
36 | throw self::_unimplemented(); |
37 | } |
38 | |
39 | /** |
40 | * @param string $val |
41 | */ |
42 | public function setId( string $val ): void { |
43 | throw self::_unimplemented(); |
44 | } |
45 | |
46 | /** |
47 | * @return float |
48 | */ |
49 | public function getStartTime(): float { |
50 | throw self::_unimplemented(); |
51 | } |
52 | |
53 | /** |
54 | * @param float $val |
55 | */ |
56 | public function setStartTime( float $val ): void { |
57 | throw self::_unimplemented(); |
58 | } |
59 | |
60 | /** |
61 | * @return float |
62 | */ |
63 | public function getEndTime(): float { |
64 | throw self::_unimplemented(); |
65 | } |
66 | |
67 | /** |
68 | * @param float $val |
69 | */ |
70 | public function setEndTime( float $val ): void { |
71 | throw self::_unimplemented(); |
72 | } |
73 | |
74 | /** |
75 | * @return bool |
76 | */ |
77 | public function getPauseOnExit(): bool { |
78 | throw self::_unimplemented(); |
79 | } |
80 | |
81 | /** |
82 | * @param bool $val |
83 | */ |
84 | public function setPauseOnExit( bool $val ): void { |
85 | throw self::_unimplemented(); |
86 | } |
87 | |
88 | /** |
89 | * @return EventHandlerNonNull|callable|null |
90 | */ |
91 | public function getOnenter() { |
92 | throw self::_unimplemented(); |
93 | } |
94 | |
95 | /** |
96 | * @param EventHandlerNonNull|callable|null $val |
97 | */ |
98 | public function setOnenter( /* ?mixed */ $val ): void { |
99 | throw self::_unimplemented(); |
100 | } |
101 | |
102 | /** |
103 | * @return EventHandlerNonNull|callable|null |
104 | */ |
105 | public function getOnexit() { |
106 | throw self::_unimplemented(); |
107 | } |
108 | |
109 | /** |
110 | * @param EventHandlerNonNull|callable|null $val |
111 | */ |
112 | public function setOnexit( /* ?mixed */ $val ): void { |
113 | throw self::_unimplemented(); |
114 | } |
115 | |
116 | } |