Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
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 | * GlobalEventHandlers |
10 | * |
11 | * @see https://dom.spec.whatwg.org/#interface-globaleventhandlers |
12 | * |
13 | * @property EventHandlerNonNull|callable|null $onload |
14 | * @phan-forbid-undeclared-magic-properties |
15 | */ |
16 | interface GlobalEventHandlers { |
17 | /** |
18 | * @return EventHandlerNonNull|callable|null |
19 | */ |
20 | public function getOnload(); |
21 | |
22 | /** |
23 | * @param EventHandlerNonNull|callable|null $val |
24 | */ |
25 | public function setOnload( /* ?mixed */ $val ): void; |
26 | |
27 | } |