aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/includes/SevenZipStream.php
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/includes/SevenZipStream.php')
-rw-r--r--maintenance/includes/SevenZipStream.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/maintenance/includes/SevenZipStream.php b/maintenance/includes/SevenZipStream.php
index 7b6a27849b72..a133c5f01832 100644
--- a/maintenance/includes/SevenZipStream.php
+++ b/maintenance/includes/SevenZipStream.php
@@ -24,6 +24,8 @@
* @ingroup Maintenance
*/
+namespace MediaWiki\Maintenance;
+
use MediaWiki\Shell\Shell;
/**
@@ -105,3 +107,6 @@ class SevenZipStream {
return fseek( $this->stream, $offset, $whence );
}
}
+
+/** @deprecated class alias since 1.43 */
+class_alias( SevenZipStream::class, 'SevenZipStream' );