Index: trunk/phase3/includes/specials/SpecialBlock.php |
— | — | @@ -334,7 +334,7 @@ |
335 | 335 | |
336 | 336 | /** |
337 | 337 | * Add footer elements to the form |
338 | | - * @return void |
| 338 | + * @return string |
339 | 339 | */ |
340 | 340 | protected function postText(){ |
341 | 341 | # Link to the user's contributions, if applicable |
Index: trunk/phase3/includes/upload/UploadFromChunks.php |
— | — | @@ -82,7 +82,7 @@ |
83 | 83 | |
84 | 84 | /** |
85 | 85 | * Append the final chunk and ready file for parent::performUpload() |
86 | | - * @return void |
| 86 | + * @return FileRepoStatus |
87 | 87 | */ |
88 | 88 | public function concatenateChunks() { |
89 | 89 | wfDebug( __METHOD__ . " concatenate {$this->mChunkIndex} chunks:" . |
Index: trunk/phase3/includes/filerepo/FileRepo.php |
— | — | @@ -1223,10 +1223,9 @@ |
1224 | 1224 | * May use either the database or the filesystem. |
1225 | 1225 | * |
1226 | 1226 | * @param $callback Array|string |
1227 | | - * @return void |
1228 | 1227 | */ |
1229 | 1228 | public function enumFiles( $callback ) { |
1230 | | - return $this->enumFilesInStorage( $callback ); |
| 1229 | + $this->enumFilesInStorage( $callback ); |
1231 | 1230 | } |
1232 | 1231 | |
1233 | 1232 | /** |
— | — | @@ -1234,7 +1233,6 @@ |
1235 | 1234 | * May use either the database or the filesystem. |
1236 | 1235 | * |
1237 | 1236 | * @param $callback Array|string |
1238 | | - * @return void |
1239 | 1237 | */ |
1240 | 1238 | protected function enumFilesInStorage( $callback ) { |
1241 | 1239 | $publicRoot = $this->getZonePath( 'public' ); |