diff options
Diffstat (limited to 'maintenance/storage/trackBlobs.php')
-rw-r--r-- | maintenance/storage/trackBlobs.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/maintenance/storage/trackBlobs.php b/maintenance/storage/trackBlobs.php index 8f6d83ee5320..5eef62f9cd75 100644 --- a/maintenance/storage/trackBlobs.php +++ b/maintenance/storage/trackBlobs.php @@ -111,7 +111,7 @@ class TrackBlobs extends Maintenance { $dbw->sourceFile( __DIR__ . '/blob_tracking.sql' ); } - private function getTextClause() { + private function getTextClause(): IExpression { if ( !$this->textClause ) { $dbr = $this->getReplicaDB(); $conds = []; @@ -128,7 +128,7 @@ class TrackBlobs extends Maintenance { return $this->textClause; } - private function interpretPointer( $text ) { + private function interpretPointer( string $text ) { if ( !preg_match( '!^DB://(\w+)/(\d+)(?:/([0-9a-fA-F]+)|)$!', $text, $m ) ) { return false; } |