Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
AddEventListenerOptions
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
 getPassive
n/a
0 / 0
n/a
0 / 0
0
 getOnce
n/a
0 / 0
n/a
0 / 0
0
 getSignal
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
6namespace Wikimedia\IDLeDOM;
7
8/**
9 * AddEventListenerOptions
10 *
11 * @see https://dom.spec.whatwg.org/#dictdef-addeventlisteneroptions
12 *
13 * @property bool $capture
14 * @property bool $passive
15 * @property bool $once
16 * @property AbortSignal $signal
17 * @phan-forbid-undeclared-magic-properties
18 */
19abstract class AddEventListenerOptions extends EventListenerOptions {
20    // Dictionary type
21    // Direct parent: EventListenerOptions
22
23    use \Wikimedia\IDLeDOM\Helper\AddEventListenerOptions;
24
25    /**
26     * @return bool
27     */
28    abstract public function getPassive(): bool;
29
30    /**
31     * @return bool
32     */
33    abstract public function getOnce(): bool;
34
35    /**
36     * @return AbortSignal
37     */
38    abstract public function getSignal();
39
40}