Index: trunk/phase3/includes/RecentChange.php |
— | — | @@ -340,7 +340,6 @@ |
341 | 341 | /** |
342 | 342 | * Makes an entry in the database corresponding to an edit |
343 | 343 | * |
344 | | - * @static |
345 | 344 | * @param $timestamp |
346 | 345 | * @param $title Title |
347 | 346 | * @param $minor |
— | — | @@ -407,7 +406,6 @@ |
408 | 407 | * Note: the title object must be loaded with the new id using resetArticleID() |
409 | 408 | * @todo Document parameters and return |
410 | 409 | * |
411 | | - * @static |
412 | 410 | * @param $timestamp |
413 | 411 | * @param $title Title |
414 | 412 | * @param $minor |
— | — | @@ -469,7 +467,6 @@ |
470 | 468 | # Makes an entry in the database corresponding to a rename |
471 | 469 | |
472 | 470 | /** |
473 | | - * @static |
474 | 471 | * @param $timestamp |
475 | 472 | * @param $oldTitle Title |
476 | 473 | * @param $newTitle Title |
— | — | @@ -547,7 +544,6 @@ |
548 | 545 | } |
549 | 546 | |
550 | 547 | /** |
551 | | - * @static |
552 | 548 | * @param $timestamp |
553 | 549 | * @param $title Title |
554 | 550 | * @param $user User |
Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -495,8 +495,6 @@ |
496 | 496 | |
497 | 497 | /** |
498 | 498 | * Get a random string |
499 | | - * |
500 | | - * @static |
501 | 499 | */ |
502 | 500 | static public function getRandomString() { |
503 | 501 | return dechex( mt_rand( 0, 0x7fffffff ) ) . dechex( mt_rand( 0, 0x7fffffff ) ); |
Index: trunk/phase3/includes/parser/CoreParserFunctions.php |
— | — | @@ -11,7 +11,6 @@ |
12 | 12 | */ |
13 | 13 | class CoreParserFunctions { |
14 | 14 | /** |
15 | | - * @static |
16 | 15 | * @param $parser Parser |
17 | 16 | * @return void |
18 | 17 | */ |
— | — | @@ -89,7 +88,6 @@ |
90 | 89 | } |
91 | 90 | |
92 | 91 | /** |
93 | | - * @static |
94 | 92 | * @param $parser Parser |
95 | 93 | * @param string $part1 |
96 | 94 | * @return array |
— | — | @@ -106,7 +104,6 @@ |
107 | 105 | } |
108 | 106 | |
109 | 107 | /** |
110 | | - * @static |
111 | 108 | * @param $parser Parser |
112 | 109 | * @param $date |
113 | 110 | * @param null $defaultPref |
— | — | @@ -190,7 +187,6 @@ |
191 | 188 | } |
192 | 189 | |
193 | 190 | /** |
194 | | - * @static |
195 | 191 | * @param $parser Parser |
196 | 192 | * @param string $s |
197 | 193 | * @return |
— | — | @@ -205,7 +201,6 @@ |
206 | 202 | } |
207 | 203 | |
208 | 204 | /** |
209 | | - * @static |
210 | 205 | * @param $parser Parser |
211 | 206 | * @param string $s |
212 | 207 | * @return |
— | — | @@ -249,7 +244,6 @@ |
250 | 245 | } |
251 | 246 | |
252 | 247 | /** |
253 | | - * @static |
254 | 248 | * @param $parser Parser |
255 | 249 | * @param string $num |
256 | 250 | * @param null $raw |
— | — | @@ -264,7 +258,6 @@ |
265 | 259 | } |
266 | 260 | |
267 | 261 | /** |
268 | | - * @static |
269 | 262 | * @param $parser Parser |
270 | 263 | * @param string $case |
271 | 264 | * @param string $word |
— | — | @@ -275,7 +268,6 @@ |
276 | 269 | } |
277 | 270 | |
278 | 271 | /** |
279 | | - * @static |
280 | 272 | * @param $parser Parser |
281 | 273 | * @param $user User |
282 | 274 | * @return |
— | — | @@ -306,7 +298,6 @@ |
307 | 299 | } |
308 | 300 | |
309 | 301 | /** |
310 | | - * @static |
311 | 302 | * @param $parser Parser |
312 | 303 | * @param string $text |
313 | 304 | * @return |
— | — | @@ -643,7 +634,6 @@ |
644 | 635 | } |
645 | 636 | |
646 | 637 | /** |
647 | | - * @static |
648 | 638 | * @param $parser Parser |
649 | 639 | * @param $text |
650 | 640 | * @return string |
— | — | @@ -663,7 +653,6 @@ |
664 | 654 | } |
665 | 655 | |
666 | 656 | /** |
667 | | - * @static |
668 | 657 | * @param $parser Parser |
669 | 658 | * @param $text |
670 | 659 | * @return string |
Index: trunk/phase3/includes/parser/CoreLinkFunctions.php |
— | — | @@ -11,7 +11,6 @@ |
12 | 12 | */ |
13 | 13 | class CoreLinkFunctions { |
14 | 14 | /** |
15 | | - * @static |
16 | 15 | * @param $parser Parser_LinkHooks |
17 | 16 | * @return bool |
18 | 17 | */ |
— | — | @@ -21,7 +20,6 @@ |
22 | 21 | } |
23 | 22 | |
24 | 23 | /** |
25 | | - * @static |
26 | 24 | * @param $parser Parser |
27 | 25 | * @param $holders LinkHolderArray |
28 | 26 | * @param $markers LinkMarkerReplacer |
— | — | @@ -45,7 +43,6 @@ |
46 | 44 | } |
47 | 45 | |
48 | 46 | /** |
49 | | - * @static |
50 | 47 | * @param $parser Parser |
51 | 48 | * @param $holders LinkHolderArray |
52 | 49 | * @param $markers LinkMarkerReplacer |
Index: trunk/phase3/includes/parser/CoreTagHooks.php |
— | — | @@ -11,7 +11,6 @@ |
12 | 12 | */ |
13 | 13 | class CoreTagHooks { |
14 | 14 | /** |
15 | | - * @static |
16 | 15 | * @param $parser Parser |
17 | 16 | * @return void |
18 | 17 | */ |
— | — | @@ -50,7 +49,6 @@ |
51 | 50 | } |
52 | 51 | |
53 | 52 | /** |
54 | | - * @static |
55 | 53 | * @param $content |
56 | 54 | * @param $attributes |
57 | 55 | * @param $parser Parser |
Index: trunk/phase3/includes/Linker.php |
— | — | @@ -1208,7 +1208,6 @@ |
1209 | 1209 | } |
1210 | 1210 | |
1211 | 1211 | /** |
1212 | | - * @static |
1213 | 1212 | * @param $contextTitle Title |
1214 | 1213 | * @param $target |
1215 | 1214 | * @param $text |
Index: trunk/phase3/includes/db/DatabasePostgres.php |
— | — | @@ -10,7 +10,6 @@ |
11 | 11 | private $name, $tablename, $type, $nullable, $max_length, $deferred, $deferrable, $conname; |
12 | 12 | |
13 | 13 | /** |
14 | | - * @static |
15 | 14 | * @param $db DatabaseBase |
16 | 15 | * @param $table |
17 | 16 | * @param $field |
Index: trunk/phase3/includes/filerepo/OldLocalFile.php |
— | — | @@ -36,7 +36,6 @@ |
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
40 | | - * @static |
41 | 40 | * @param $sha1 |
42 | 41 | * @param $repo LocalRepo |
43 | 42 | * @param bool $timestamp |
Index: trunk/phase3/includes/filerepo/LocalRepo.php |
— | — | @@ -86,7 +86,6 @@ |
87 | 87 | /** |
88 | 88 | * Gets the SHA1 hash from a storage key |
89 | 89 | * |
90 | | - * @static |
91 | 90 | * @param string $key |
92 | 91 | * @return string |
93 | 92 | */ |
Index: trunk/phase3/includes/filerepo/ForeignAPIFile.php |
— | — | @@ -29,7 +29,6 @@ |
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
33 | | - * @static |
34 | 33 | * @param $title Title |
35 | 34 | * @param $repo ForeignApiRepo |
36 | 35 | * @return ForeignAPIFile|null |
Index: trunk/phase3/includes/revisiondelete/RevisionDeleter.php |
— | — | @@ -131,7 +131,6 @@ |
132 | 132 | * If it doesn't, returns the corresponding ar_timestamp field |
133 | 133 | * so that this key can be used instead. |
134 | 134 | * |
135 | | - * @static |
136 | 135 | * @param $title Title |
137 | 136 | * @param $revid |
138 | 137 | * @return bool|mixed |
— | — | @@ -156,7 +155,6 @@ |
157 | 156 | /** |
158 | 157 | * Creates utility links for log entries. |
159 | 158 | * |
160 | | - * @static |
161 | 159 | * @param $title Title |
162 | 160 | * @param $paramArray Array |
163 | 161 | * @param $skin Skin |
Index: trunk/phase3/includes/installer/DatabaseUpdater.php |
— | — | @@ -88,7 +88,6 @@ |
89 | 89 | } |
90 | 90 | |
91 | 91 | /** |
92 | | - * @static |
93 | 92 | * @throws MWException |
94 | 93 | * @param DatabaseBase $db |
95 | 94 | * @param bool $shared |
Index: trunk/phase3/includes/api/ApiQueryRecentChanges.php |
— | — | @@ -73,7 +73,6 @@ |
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
77 | | - * @static |
78 | 77 | * @param $pageid |
79 | 78 | * @param $title |
80 | 79 | * @param $rc RecentChange |
Index: trunk/phase3/includes/api/ApiDelete.php |
— | — | @@ -155,7 +155,6 @@ |
156 | 156 | } |
157 | 157 | |
158 | 158 | /** |
159 | | - * @static |
160 | 159 | * @param $token |
161 | 160 | * @param $title Title |
162 | 161 | * @param $oldimage |
Index: trunk/phase3/includes/api/ApiQueryLogEvents.php |
— | — | @@ -197,7 +197,6 @@ |
198 | 198 | } |
199 | 199 | |
200 | 200 | /** |
201 | | - * @static |
202 | 201 | * @param $result ApiResult |
203 | 202 | * @param $vals |
204 | 203 | * @param $params |
Index: trunk/phase3/includes/api/ApiMain.php |
— | — | @@ -880,7 +880,6 @@ |
881 | 881 | } |
882 | 882 | |
883 | 883 | /** |
884 | | - * @static |
885 | 884 | * @param $module ApiBase |
886 | 885 | * @param $paramName String What type of request is this? e.g. action, query, list, prop, meta, format |
887 | 886 | * @return string |
Index: trunk/phase3/includes/api/ApiQueryImageInfo.php |
— | — | @@ -486,7 +486,6 @@ |
487 | 487 | * |
488 | 488 | * @param array $filter List of properties to filter out |
489 | 489 | * |
490 | | - * @static |
491 | 490 | * @return Array |
492 | 491 | */ |
493 | 492 | public static function getPropertyNames( $filter = array() ) { |
— | — | @@ -496,7 +495,6 @@ |
497 | 496 | /** |
498 | 497 | * Returns array key value pairs of properties and their descriptions |
499 | 498 | * |
500 | | - * @static |
501 | 499 | * @return array |
502 | 500 | */ |
503 | 501 | private static function getProperties() { |
— | — | @@ -524,7 +522,6 @@ |
525 | 523 | * |
526 | 524 | * @param array $filter List of properties to filter out |
527 | 525 | * |
528 | | - * @static |
529 | 526 | * @return array |
530 | 527 | */ |
531 | 528 | public static function getPropertyDescriptions( $filter = array() ) { |
Index: trunk/phase3/includes/api/ApiQueryRevisions.php |
— | — | @@ -74,7 +74,6 @@ |
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
78 | | - * @static |
79 | 78 | * @param $pageid |
80 | 79 | * @param $title Title |
81 | 80 | * @param $rev Revision |
Index: trunk/phase3/includes/api/ApiQueryUsers.php |
— | — | @@ -67,7 +67,6 @@ |
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
71 | | - * @static |
72 | 71 | * @param $user User |
73 | 72 | * @return String |
74 | 73 | */ |
Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -17,7 +17,6 @@ |
18 | 18 | var $userlink, $timestamp, $watched; |
19 | 19 | |
20 | 20 | /** |
21 | | - * @static |
22 | 21 | * @param $rc RecentChange |
23 | 22 | * @return RCCacheEntry |
24 | 23 | */ |
Index: trunk/phase3/includes/MagicWord.php |
— | — | @@ -190,7 +190,6 @@ |
191 | 191 | |
192 | 192 | /** |
193 | 193 | * Factory: creates an object representing an ID |
194 | | - * @static |
195 | 194 | * @return MagicWord |
196 | 195 | */ |
197 | 196 | static function &get( $id ) { |
— | — | @@ -481,6 +480,7 @@ |
482 | 481 | * thereby gaining some efficiency. The result is placed in the out variable |
483 | 482 | * $result. The return value is true if something was replaced. |
484 | 483 | * @static |
| 484 | + * @todo Should this be static? It doesn't seem to be used at all |
485 | 485 | **/ |
486 | 486 | function replaceMultiple( $magicarr, $subject, &$result ){ |
487 | 487 | $search = array(); |
Index: trunk/phase3/includes/Collation.php |
— | — | @@ -4,7 +4,6 @@ |
5 | 5 | static $instance; |
6 | 6 | |
7 | 7 | /** |
8 | | - * @static |
9 | 8 | * @return Collation |
10 | 9 | */ |
11 | 10 | static function singleton() { |
— | — | @@ -16,7 +15,6 @@ |
17 | 16 | } |
18 | 17 | |
19 | 18 | /** |
20 | | - * @static |
21 | 19 | * @throws MWException |
22 | 20 | * @param $collationName string |
23 | 21 | * @return Collation |