Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
EventListenerOptions
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
 getCapture
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 * EventListenerOptions
10 *
11 * @see https://dom.spec.whatwg.org/#dictdef-eventlisteneroptions
12 *
13 * @property bool $capture
14 * @phan-forbid-undeclared-magic-properties
15 */
16abstract class EventListenerOptions implements \ArrayAccess {
17    // Dictionary type
18
19    use \Wikimedia\IDLeDOM\Helper\EventListenerOptions;
20
21    /**
22     * @return bool
23     */
24    abstract public function getCapture(): bool;
25
26}