Merge "Add doc to DatabaseLogEntry"

This commit is contained in:
jenkins-bot 2020-06-15 01:21:00 +00:00 committed by Gerrit Code Review
commit 52f1a3b0e9
2 changed files with 4 additions and 0 deletions

View file

@ -29,6 +29,8 @@ use Wikimedia\Rdbms\IDatabase;
* A value class to process existing log entries. In other words, this class caches a log
* entry from the database and provides an immutable object-oriented representation of it.
*
* This class should only be used in context of the LogFormatter class.
*
* @since 1.19
*/
class DatabaseLogEntry extends LogEntryBase {

View file

@ -26,6 +26,8 @@
/**
* A subclass of DatabaseLogEntry for objects constructed from entries in the
* recentchanges table (rather than the logging table).
*
* This class should only be used in context of the LogFormatter class.
*/
class RCDatabaseLogEntry extends DatabaseLogEntry {