Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 9 |
|
0.00% |
0 / 9 |
CRAP | |
0.00% |
0 / 1 |
URLSearchParams | |
0.00% |
0 / 9 |
|
0.00% |
0 / 9 |
90 | |
0.00% |
0 / 1 |
_unimplemented | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
append | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
delete | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
get | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getAll | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
has | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
set | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
sort | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getIterator | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
toString | |
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 | |
10 | trait URLSearchParams { |
11 | |
12 | // Underscore is used to avoid conflicts with DOM-reserved names |
13 | // phpcs:disable PSR2.Methods.MethodDeclaration.Underscore |
14 | // phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName |
15 | |
16 | /** |
17 | * @return Exception |
18 | */ |
19 | abstract protected function _unimplemented(): Exception; |
20 | |
21 | // phpcs:enable |
22 | |
23 | /** |
24 | * @param string $name |
25 | * @param string $value |
26 | * @return void |
27 | */ |
28 | public function append( string $name, string $value ): void { |
29 | throw self::_unimplemented(); |
30 | } |
31 | |
32 | /** |
33 | * @param string $name |
34 | * @return void |
35 | */ |
36 | public function delete( string $name ): void { |
37 | throw self::_unimplemented(); |
38 | } |
39 | |
40 | /** |
41 | * @param string $name |
42 | * @return ?string |
43 | */ |
44 | public function get( string $name ): ?string { |
45 | throw self::_unimplemented(); |
46 | } |
47 | |
48 | /** |
49 | * @param string $name |
50 | * @return list<string> |
51 | */ |
52 | public function getAll( string $name ): array { |
53 | throw self::_unimplemented(); |
54 | } |
55 | |
56 | /** |
57 | * @param string $name |
58 | * @return bool |
59 | */ |
60 | public function has( string $name ): bool { |
61 | throw self::_unimplemented(); |
62 | } |
63 | |
64 | /** |
65 | * @param string $name |
66 | * @param string $value |
67 | * @return void |
68 | */ |
69 | public function set( string $name, string $value ): void { |
70 | throw self::_unimplemented(); |
71 | } |
72 | |
73 | /** |
74 | * @return void |
75 | */ |
76 | public function sort(): void { |
77 | throw self::_unimplemented(); |
78 | } |
79 | |
80 | /** |
81 | * @return \Iterator<string,string> Pair iterator: string => string |
82 | */ |
83 | public function getIterator(): \Iterator { |
84 | throw self::_unimplemented(); |
85 | } |
86 | |
87 | /** |
88 | * @return string |
89 | */ |
90 | public function toString(): string { |
91 | throw self::_unimplemented(); |
92 | } |
93 | |
94 | } |