Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
EventInit | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
getBubbles | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
getCancelable | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
getComposed | n/a |
0 / 0 |
n/a |
0 / 0 |
0 |
1 | <?php |
2 | |
3 | // AUTOMATICALLY GENERATED. DO NOT EDIT. |
4 | // Use `composer build` to regenerate. |
5 | |
6 | namespace Wikimedia\IDLeDOM; |
7 | |
8 | /** |
9 | * EventInit |
10 | * |
11 | * @see https://dom.spec.whatwg.org/#dictdef-eventinit |
12 | * |
13 | * @property bool $bubbles |
14 | * @property bool $cancelable |
15 | * @property bool $composed |
16 | * @phan-forbid-undeclared-magic-properties |
17 | */ |
18 | abstract class EventInit implements \ArrayAccess { |
19 | // Dictionary type |
20 | |
21 | use \Wikimedia\IDLeDOM\Helper\EventInit; |
22 | |
23 | /** |
24 | * @return bool |
25 | */ |
26 | abstract public function getBubbles(): bool; |
27 | |
28 | /** |
29 | * @return bool |
30 | */ |
31 | abstract public function getCancelable(): bool; |
32 | |
33 | /** |
34 | * @return bool |
35 | */ |
36 | abstract public function getComposed(): bool; |
37 | |
38 | } |