Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 4 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 1 |
ChildNode | |
0.00% |
0 / 4 |
|
0.00% |
0 / 4 |
20 | |
0.00% |
0 / 1 |
_unimplemented | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
before | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
after | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
replaceWith | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
remove | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | // AUTOMATICALLY GENERATED. DO NOT EDIT. |
4 | // Use `composer build` to regenerate. |
5 | |
6 | namespace Wikimedia\IDLeDOM\Stub; |
7 | |
8 | use Exception; |
9 | use Wikimedia\IDLeDOM\Node; |
10 | |
11 | trait ChildNode { |
12 | |
13 | // Underscore is used to avoid conflicts with DOM-reserved names |
14 | // phpcs:disable PSR2.Methods.MethodDeclaration.Underscore |
15 | // phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName |
16 | |
17 | /** |
18 | * @return Exception |
19 | */ |
20 | abstract protected function _unimplemented(): Exception; |
21 | |
22 | // phpcs:enable |
23 | |
24 | /** |
25 | * @param Node|string ...$nodes |
26 | * @return void |
27 | */ |
28 | public function before( /* mixed */ ...$nodes ): void { |
29 | throw self::_unimplemented(); |
30 | } |
31 | |
32 | /** |
33 | * @param Node|string ...$nodes |
34 | * @return void |
35 | */ |
36 | public function after( /* mixed */ ...$nodes ): void { |
37 | throw self::_unimplemented(); |
38 | } |
39 | |
40 | /** |
41 | * @param Node|string ...$nodes |
42 | * @return void |
43 | */ |
44 | public function replaceWith( /* mixed */ ...$nodes ): void { |
45 | throw self::_unimplemented(); |
46 | } |
47 | |
48 | /** |
49 | * @return void |
50 | */ |
51 | public function remove(): void { |
52 | throw self::_unimplemented(); |
53 | } |
54 | |
55 | } |