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
6namespace Wikimedia\IDLeDOM;
7
8/**
9 * CSSNamespaceRule
10 *
11 * @see https://dom.spec.whatwg.org/#interface-cssnamespacerule
12 *
13 * @property string $cssText
14 * @property CSSRule|null $parentRule
15 * @property CSSStyleSheet|null $parentStyleSheet
16 * @property int $type
17 * @property string $namespaceURI
18 * @property string $prefix
19 * @phan-forbid-undeclared-magic-properties
20 */
21interface CSSNamespaceRule extends CSSRule {
22    // Direct parent: CSSRule
23
24    /**
25     * @return string
26     */
27    public function getNamespaceURI(): string;
28
29    /**
30     * @return string
31     */
32    public function getPrefix(): string;
33
34}