mirror of
https://github.com/diocloid/LinkTitles.git
synced 2025-07-13 17:59:29 +02:00
Use typed parameters in functions.
This commit is contained in:
@ -74,10 +74,10 @@ class SpecialLinkTitles extends SpecialPage {
|
||||
/// Processes wiki articles, starting at the page indicated by
|
||||
/// $startTitle. If $wgLinkTitlesTimeLimit is reached before all pages are
|
||||
/// processed, returns the title of the next page that needs processing.
|
||||
/// @param $request WebRequest object that is associated with the special
|
||||
/// page.
|
||||
/// @param $output Output object that the special page is equipped with.
|
||||
private function process(&$request, &$output) {
|
||||
/// @param WebRequest $request WebRequest object that is associated with the special
|
||||
/// page.
|
||||
/// @param Output $output Output object that the special page is equipped with.
|
||||
private function process( WebRequest &$request, Output &$output) {
|
||||
global $wgLinkTitlesTimeLimit;
|
||||
|
||||
// Start the stopwatch
|
||||
|
Reference in New Issue
Block a user