X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Forphans.php;h=e36c5b67dd544ae398c38510cba762a4c4c653ea;hb=0a176a1e01d67d6a15dc9435a57018d5082e1b35;hp=e4f3e913542eb63634b275f60299bb367946c8fd;hpb=cbdcfaef6255d9404b2f94043b211429560d3dcd;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/orphans.php b/maintenance/orphans.php index e4f3e91354..e36c5b67dd 100644 --- a/maintenance/orphans.php +++ b/maintenance/orphans.php @@ -30,6 +30,8 @@ require_once __DIR__ . '/Maintenance.php'; +use Wikimedia\Rdbms\IMaintainableDatabase; + /** * Maintenance script that looks for 'orphan' revisions hooked to pages which * don't exist and 'childless' pages with no revisions. @@ -56,8 +58,8 @@ class Orphans extends Maintenance { /** * Lock the appropriate tables for the script - * @param Database $db - * @param string $extraTable The name of any extra tables to lock (eg: text) + * @param IMaintainableDatabase $db + * @param string[] $extraTable The name of any extra tables to lock (eg: text) */ private function lockTables( $db, $extraTable = [] ) { $tbls = [ 'page', 'revision', 'redirect' ];