1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* This file is part of PHP Mess Detector. |
4
|
|
|
* |
5
|
|
|
* Copyright (c) Manuel Pichler <[email protected]>. |
6
|
|
|
* All rights reserved. |
7
|
|
|
* |
8
|
|
|
* Licensed under BSD License |
9
|
|
|
* For full copyright and license information, please see the LICENSE file. |
10
|
|
|
* Redistributions of files must retain the above copyright notice. |
11
|
|
|
* |
12
|
|
|
* @author Manuel Pichler <[email protected]> |
13
|
|
|
* @copyright Manuel Pichler. All rights reserved. |
14
|
|
|
* @license https://opensource.org/licenses/bsd-license.php BSD License |
15
|
|
|
* @link http://phpmd.org/ |
16
|
|
|
*/ |
17
|
|
|
|
18
|
|
|
namespace PHPMD\Regression\Sources; |
19
|
|
|
|
20
|
|
|
class ExcessivePublicCountWorksForPublicStaticMethods |
21
|
|
|
{ |
22
|
|
|
public static function aMethod() |
23
|
|
|
{ |
24
|
|
|
} |
25
|
|
|
|
26
|
|
|
public static function bMethod() |
27
|
|
|
{ |
28
|
|
|
} |
29
|
|
|
|
30
|
|
|
public static function cMethod() |
31
|
|
|
{ |
32
|
|
|
} |
33
|
|
|
|
34
|
|
|
public static function dMethod() |
35
|
|
|
{ |
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
public static function eMethod() |
39
|
|
|
{ |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
public static function fMethod() |
43
|
|
|
{ |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
public static function gMethod() |
47
|
|
|
{ |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
public static function hMethod() |
51
|
|
|
{ |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
public static function iMethod() |
55
|
|
|
{ |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
public static function jMethod() |
59
|
|
|
{ |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
public static function kMethod() |
63
|
|
|
{ |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
public static function lMethod() |
67
|
|
|
{ |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
public static function mMethod() |
71
|
|
|
{ |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
public static function nMethod() |
75
|
|
|
{ |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
public static function oMethod() |
79
|
|
|
{ |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
public static function pMethod() |
83
|
|
|
{ |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
public static function rMethod() |
87
|
|
|
{ |
88
|
|
|
} |
89
|
|
|
|
90
|
|
|
public static function sMethod() |
91
|
|
|
{ |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
public static function tMethod() |
95
|
|
|
{ |
96
|
|
|
} |
97
|
|
|
|
98
|
|
|
public static function uMethod() |
99
|
|
|
{ |
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
public static function wMethod() |
103
|
|
|
{ |
104
|
|
|
} |
105
|
|
|
|
106
|
|
|
public static function xMethod() |
107
|
|
|
{ |
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
public static function yMethod() |
111
|
|
|
{ |
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
public static function zMethod() |
115
|
|
|
{ |
116
|
|
|
} |
117
|
|
|
|
118
|
|
|
public static function aaMethod() |
119
|
|
|
{ |
120
|
|
|
} |
121
|
|
|
|
122
|
|
|
public static function abMethod() |
123
|
|
|
{ |
124
|
|
|
} |
125
|
|
|
|
126
|
|
|
public static function acMethod() |
127
|
|
|
{ |
128
|
|
|
} |
129
|
|
|
|
130
|
|
|
public static function adMethod() |
131
|
|
|
{ |
132
|
|
|
} |
133
|
|
|
|
134
|
|
|
public static function aeMethod() |
135
|
|
|
{ |
136
|
|
|
} |
137
|
|
|
|
138
|
|
|
public static function afMethod() |
139
|
|
|
{ |
140
|
|
|
} |
141
|
|
|
|
142
|
|
|
public static function agMethod() |
143
|
|
|
{ |
144
|
|
|
} |
145
|
|
|
|
146
|
|
|
public static function ahMethod() |
147
|
|
|
{ |
148
|
|
|
} |
149
|
|
|
|
150
|
|
|
public static function ajMethod() |
151
|
|
|
{ |
152
|
|
|
} |
153
|
|
|
|
154
|
|
|
public static function akMethod() |
155
|
|
|
{ |
156
|
|
|
} |
157
|
|
|
|
158
|
|
|
public static function alMethod() |
159
|
|
|
{ |
160
|
|
|
} |
161
|
|
|
|
162
|
|
|
public static function amMethod() |
163
|
|
|
{ |
164
|
|
|
} |
165
|
|
|
|
166
|
|
|
public static function anMethod() |
167
|
|
|
{ |
168
|
|
|
} |
169
|
|
|
|
170
|
|
|
public static function aoMethod() |
171
|
|
|
{ |
172
|
|
|
} |
173
|
|
|
|
174
|
|
|
public static function apMethod() |
175
|
|
|
{ |
176
|
|
|
} |
177
|
|
|
|
178
|
|
|
public static function arMethod() |
179
|
|
|
{ |
180
|
|
|
} |
181
|
|
|
|
182
|
|
|
public static function asMethod() |
183
|
|
|
{ |
184
|
|
|
} |
185
|
|
|
|
186
|
|
|
public static function atMethod() |
187
|
|
|
{ |
188
|
|
|
} |
189
|
|
|
|
190
|
|
|
public static function auMethod() |
191
|
|
|
{ |
192
|
|
|
} |
193
|
|
|
|
194
|
|
|
public static function awMethod() |
195
|
|
|
{ |
196
|
|
|
} |
197
|
|
|
|
198
|
|
|
public static function axMethod() |
199
|
|
|
{ |
200
|
|
|
} |
201
|
|
|
|
202
|
|
|
public static function ayMethod() |
203
|
|
|
{ |
204
|
|
|
} |
205
|
|
|
|
206
|
|
|
public static function azMethod() |
207
|
|
|
{ |
208
|
|
|
} |
209
|
|
|
|
210
|
|
|
public static function baMethod() |
211
|
|
|
{ |
212
|
|
|
} |
213
|
|
|
|
214
|
|
|
public static function bbMethod() |
215
|
|
|
{ |
216
|
|
|
} |
217
|
|
|
|
218
|
|
|
public static function bcMethod() |
219
|
|
|
{ |
220
|
|
|
} |
221
|
|
|
|
222
|
|
|
public static function bdMethod() |
223
|
|
|
{ |
224
|
|
|
} |
225
|
|
|
|
226
|
|
|
public static function beMethod() |
227
|
|
|
{ |
228
|
|
|
} |
229
|
|
|
|
230
|
|
|
public static function bfMethod() |
231
|
|
|
{ |
232
|
|
|
} |
233
|
|
|
|
234
|
|
|
public static function bgMethod() |
235
|
|
|
{ |
236
|
|
|
} |
237
|
|
|
|
238
|
|
|
public static function bhMethod() |
239
|
|
|
{ |
240
|
|
|
} |
241
|
|
|
|
242
|
|
|
public static function biMethod() |
243
|
|
|
{ |
244
|
|
|
} |
245
|
|
|
|
246
|
|
|
public static function bjMethod() |
247
|
|
|
{ |
248
|
|
|
} |
249
|
|
|
|
250
|
|
|
public static function bkMethod() |
251
|
|
|
{ |
252
|
|
|
} |
253
|
|
|
|
254
|
|
|
public static function blmethod() |
255
|
|
|
{ |
256
|
|
|
} |
257
|
|
|
|
258
|
|
|
public static function bmmethod() |
259
|
|
|
{ |
260
|
|
|
} |
261
|
|
|
|
262
|
|
|
public static function bnMethod() |
263
|
|
|
{ |
264
|
|
|
} |
265
|
|
|
|
266
|
|
|
public static function boMethod() |
267
|
|
|
{ |
268
|
|
|
} |
269
|
|
|
|
270
|
|
|
public static function bpMethod() |
271
|
|
|
{ |
272
|
|
|
} |
273
|
|
|
|
274
|
|
|
public static function brMethod() |
275
|
|
|
{ |
276
|
|
|
} |
277
|
|
|
|
278
|
|
|
public static function bsMethod() |
279
|
|
|
{ |
280
|
|
|
} |
281
|
|
|
|
282
|
|
|
public static function btMethod() |
283
|
|
|
{ |
284
|
|
|
} |
285
|
|
|
|
286
|
|
|
public static function buMethod() |
287
|
|
|
{ |
288
|
|
|
} |
289
|
|
|
|
290
|
|
|
public static function bwMethod() |
291
|
|
|
{ |
292
|
|
|
} |
293
|
|
|
|
294
|
|
|
public static function bxMethod() |
295
|
|
|
{ |
296
|
|
|
} |
297
|
|
|
|
298
|
|
|
public static function byMethod() |
299
|
|
|
{ |
300
|
|
|
} |
301
|
|
|
|
302
|
|
|
public static function bzMethod() |
303
|
|
|
{ |
304
|
|
|
} |
305
|
|
|
} |
306
|
|
|
|