Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 11 |
|
0.00% |
0 / 11 |
CRAP | |
0.00% |
0 / 1 |
NavigatorID | |
0.00% |
0 / 11 |
|
0.00% |
0 / 11 |
132 | |
0.00% |
0 / 1 |
_unimplemented | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
getAppCodeName | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getAppName | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getAppVersion | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getPlatform | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getProduct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getProductSub | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getUserAgent | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getVendor | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getVendorSub | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
taintEnabled | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getOscpu | |
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 NavigatorID { |
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 | * @return string |
25 | */ |
26 | public function getAppCodeName(): string { |
27 | throw self::_unimplemented(); |
28 | } |
29 | |
30 | /** |
31 | * @return string |
32 | */ |
33 | public function getAppName(): string { |
34 | throw self::_unimplemented(); |
35 | } |
36 | |
37 | /** |
38 | * @return string |
39 | */ |
40 | public function getAppVersion(): string { |
41 | throw self::_unimplemented(); |
42 | } |
43 | |
44 | /** |
45 | * @return string |
46 | */ |
47 | public function getPlatform(): string { |
48 | throw self::_unimplemented(); |
49 | } |
50 | |
51 | /** |
52 | * @return string |
53 | */ |
54 | public function getProduct(): string { |
55 | throw self::_unimplemented(); |
56 | } |
57 | |
58 | /** |
59 | * @return string |
60 | */ |
61 | public function getProductSub(): string { |
62 | throw self::_unimplemented(); |
63 | } |
64 | |
65 | /** |
66 | * @return string |
67 | */ |
68 | public function getUserAgent(): string { |
69 | throw self::_unimplemented(); |
70 | } |
71 | |
72 | /** |
73 | * @return string |
74 | */ |
75 | public function getVendor(): string { |
76 | throw self::_unimplemented(); |
77 | } |
78 | |
79 | /** |
80 | * @return string |
81 | */ |
82 | public function getVendorSub(): string { |
83 | throw self::_unimplemented(); |
84 | } |
85 | |
86 | /** |
87 | * @return bool |
88 | */ |
89 | public function taintEnabled(): bool { |
90 | throw self::_unimplemented(); |
91 | } |
92 | |
93 | /** |
94 | * @return string |
95 | */ |
96 | public function getOscpu(): string { |
97 | throw self::_unimplemented(); |
98 | } |
99 | |
100 | } |