X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FnamespaceDupes.php;h=3c83921697899e3d4380eb55ca4ffe0a9b76fb39;hb=e9d42c0e7ea9390f650de8e350a4f64ff19787b0;hp=4a2b49ae9387c2b30ed0f5315657ebb4a0a79fbe;hpb=85ac1b5d7c7ca50a93f2d16639cdde2f46bc133e;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/namespaceDupes.php b/maintenance/namespaceDupes.php index 4a2b49ae93..3c83921697 100644 --- a/maintenance/namespaceDupes.php +++ b/maintenance/namespaceDupes.php @@ -459,10 +459,10 @@ class NamespaceConflictChecker extends Maintenance { /** * Get the preferred destination title for a given target page. - * @param integer $ns The destination namespace ID + * @param int $ns The destination namespace ID * @param string $name The conflicting prefix - * @param integer $sourceNs The source namespace - * @param integer $sourceDbk The source DB key (i.e. page_title) + * @param int $sourceNs The source namespace + * @param int $sourceDbk The source DB key (i.e. page_title) * @param array $options Associative array of validated command-line options * @return Title|false */ @@ -616,5 +616,5 @@ class NamespaceConflictChecker extends Maintenance { } } -$maintClass = "NamespaceConflictChecker"; +$maintClass = NamespaceConflictChecker::class; require_once RUN_MAINTENANCE_IF_MAIN;