@@ -108,6 +108,9 @@ |
||
108 | 108 | } |
109 | 109 | } |
110 | 110 | |
111 | + /** |
|
112 | + * @param boolean $shared |
|
113 | + */ |
|
111 | 114 | function outputItem( $name, $shared ) { |
112 | 115 | $file = wfFindFile( $name ); |
113 | 116 | if ( $file && $this->filterItem( $file, $shared ) ) { |
@@ -37,6 +37,9 @@ |
||
37 | 37 | return $retVal; |
38 | 38 | } |
39 | 39 | |
40 | + /** |
|
41 | + * @param string $filename |
|
42 | + */ |
|
40 | 43 | public function setCurrentFile( $filename ) { |
41 | 44 | $this->currentFile = $filename; |
42 | 45 | } |
@@ -70,6 +70,9 @@ |
||
70 | 70 | $this->checkFiles( $repo, $pathBatch, $verbose ); |
71 | 71 | } |
72 | 72 | |
73 | + /** |
|
74 | + * @param boolean $verbose |
|
75 | + */ |
|
73 | 76 | protected function checkFiles( LocalRepo $repo, array $paths, $verbose ) { |
74 | 77 | if ( !count( $paths ) ) { |
75 | 78 | return; |
@@ -275,6 +275,9 @@ |
||
275 | 275 | return $this->importFromHandle( $file ); |
276 | 276 | } |
277 | 277 | |
278 | + /** |
|
279 | + * @param resource $handle |
|
280 | + */ |
|
278 | 281 | function importFromHandle( $handle ) { |
279 | 282 | $this->startTime = microtime( true ); |
280 | 283 |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | /** |
291 | 291 | * Get an argument. |
292 | 292 | * @param int $argId The integer value (from zero) for the arg |
293 | - * @param mixed $default The default if it doesn't exist |
|
293 | + * @param string $default The default if it doesn't exist |
|
294 | 294 | * @return mixed |
295 | 295 | */ |
296 | 296 | protected function getArg( $argId = 0, $default = null ) { |
@@ -1244,6 +1244,7 @@ discard block |
||
1244 | 1244 | * Unlock and lock again |
1245 | 1245 | * Since the lock is low-priority, queued reads will be able to complete |
1246 | 1246 | * @param DatabaseBase &$db |
1247 | + * @param DatabaseBase $db |
|
1247 | 1248 | */ |
1248 | 1249 | private function relockSearchindex( $db ) { |
1249 | 1250 | $this->unlockSearchindex( $db ); |
@@ -568,7 +568,6 @@ |
||
568 | 568 | /** |
569 | 569 | * Merge page histories |
570 | 570 | * |
571 | - * @param integer $id The page_id |
|
572 | 571 | * @param Title $newTitle The new title |
573 | 572 | * @return bool |
574 | 573 | */ |
@@ -69,7 +69,7 @@ |
||
69 | 69 | * @param string $table |
70 | 70 | * @param string $idCol |
71 | 71 | * @param string $prefix |
72 | - * @param array $fields |
|
72 | + * @param string[] $fields |
|
73 | 73 | * @return int |
74 | 74 | */ |
75 | 75 | protected function doLenUpdates( $table, $idCol, $prefix, $fields ) { |
@@ -145,6 +145,9 @@ |
||
145 | 145 | class PPFuzzTest { |
146 | 146 | public $templates, $mainText, $title, $entryPoint, $output; |
147 | 147 | |
148 | + /** |
|
149 | + * @param PPFuzzTester $tester |
|
150 | + */ |
|
148 | 151 | function __construct( $tester ) { |
149 | 152 | global $wgMaxSigChars; |
150 | 153 | $this->parent = $tester; |
@@ -68,6 +68,9 @@ |
||
68 | 68 | $this->output( "\nDone\n" ); |
69 | 69 | } |
70 | 70 | |
71 | + /** |
|
72 | + * @param integer $percent |
|
73 | + */ |
|
71 | 74 | function showProgress( $percent ) { |
72 | 75 | $percentString = sprintf( "%.2f", $percent ); |
73 | 76 | if ( $percentString === $this->lastProgress ) { |