aboutsummaryrefslogtreecommitdiffstats
path: root/includes/logging/LogEntry.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/logging/LogEntry.php')
-rw-r--r--includes/logging/LogEntry.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/includes/logging/LogEntry.php b/includes/logging/LogEntry.php
index 0f117ff8ceef..b712a998cf37 100644
--- a/includes/logging/LogEntry.php
+++ b/includes/logging/LogEntry.php
@@ -18,6 +18,8 @@
* @file
*/
+namespace MediaWiki\Logging;
+
use MediaWiki\Title\Title;
use MediaWiki\User\UserIdentity;
@@ -105,3 +107,6 @@ interface LogEntry {
*/
public function isDeleted( $field );
}
+
+/** @deprecated class alias since 1.44 */
+class_alias( LogEntry::class, 'LogEntry' );