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 * NonDocumentTypeChildNode
10 *
11 * @see https://dom.spec.whatwg.org/#interface-nondocumenttypechildnode
12 *
13 * @property Element|null $previousElementSibling
14 * @property Element|null $nextElementSibling
15 * @phan-forbid-undeclared-magic-properties
16 */
17interface NonDocumentTypeChildNode {
18    /**
19     * @return Element|null
20     */
21    public function getPreviousElementSibling();
22
23    /**
24     * @return Element|null
25     */
26    public function getNextElementSibling();
27
28}