Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
CSSStyleSheetInit
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
 getBaseURL
n/a
0 / 0
n/a
0 / 0
0
 getMedia
n/a
0 / 0
n/a
0 / 0
0
 getDisabled
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 * CSSStyleSheetInit
10 *
11 * @see https://dom.spec.whatwg.org/#dictdef-cssstylesheetinit
12 *
13 * @property string $baseURL
14 * @property MediaList|string $media
15 * @property bool $disabled
16 * @phan-forbid-undeclared-magic-properties
17 */
18abstract class CSSStyleSheetInit implements \ArrayAccess {
19    // Dictionary type
20
21    use \Wikimedia\IDLeDOM\Helper\CSSStyleSheetInit;
22
23    /**
24     * @return string
25     */
26    abstract public function getBaseURL(): string;
27
28    /**
29     * @return MediaList|string
30     */
31    abstract public function getMedia();
32
33    /**
34     * @return bool
35     */
36    abstract public function getDisabled(): bool;
37
38}