aboutsummaryrefslogtreecommitdiffstats
path: root/includes/logging/RCDatabaseLogEntry.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/logging/RCDatabaseLogEntry.php')
-rw-r--r--includes/logging/RCDatabaseLogEntry.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/includes/logging/RCDatabaseLogEntry.php b/includes/logging/RCDatabaseLogEntry.php
index 4c476eb12baa..875b572b45a7 100644
--- a/includes/logging/RCDatabaseLogEntry.php
+++ b/includes/logging/RCDatabaseLogEntry.php
@@ -23,6 +23,10 @@
* @since 1.19
*/
+namespace MediaWiki\Logging;
+
+use InvalidArgumentException;
+use LogicException;
use MediaWiki\Logger\LoggerFactory;
use MediaWiki\MediaWikiServices;
use MediaWiki\Title\Title;
@@ -135,3 +139,6 @@ class RCDatabaseLogEntry extends DatabaseLogEntry {
return $this->row->rc_deleted;
}
}
+
+/** @deprecated class alias since 1.44 */
+class_alias( RCDatabaseLogEntry::class, 'RCDatabaseLogEntry' );