X-Git-Url: https://git.cyclocoop.org/%242?a=blobdiff_plain;f=maintenance%2Fincludes%2FBackupDumper.php;h=6c1c083e9912714f53447750c7da980ea850a6a8;hb=fa0f6f34972c0e0f4aac24a03b3efdfc45f256f6;hp=358dc21e13eddb455b75e8b97bf4d1cb243d3d78;hpb=786524a94a5dd8f34c10b183bc59c91e2ad96589;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/includes/BackupDumper.php b/maintenance/includes/BackupDumper.php index 358dc21e13..6c1c083e99 100644 --- a/maintenance/includes/BackupDumper.php +++ b/maintenance/includes/BackupDumper.php @@ -49,6 +49,8 @@ abstract class BackupDumper extends Maintenance { public $dumpUploadFileContents = false; public $orderRevs = false; public $limitNamespaces = []; + /** @var bool|resource */ + public $stderr; protected $reportingInterval = 100; protected $pageCount = 0; @@ -65,6 +67,33 @@ abstract class BackupDumper extends Maintenance { protected $ID = 0; + /** @var int */ + protected $startTime; + /** @var int */ + protected $pageCountPart; + /** @var int */ + protected $revCountPart; + /** @var int */ + protected $maxCount; + /** @var int */ + protected $timeOfCheckpoint; + /** @var ExportProgressFilter */ + protected $egress; + /** @var string */ + protected $buffer; + /** @var array|false */ + protected $openElement; + /** @var bool */ + protected $atStart; + /** @var string|null */ + protected $thisRevModel; + /** @var string|null */ + protected $thisRevFormat; + /** @var string */ + protected $lastName; + /** @var string */ + protected $state; + /** * The dependency-injected database to use. *