MediaWiki REL1_34
NullFileJournal.php
Go to the documentation of this file.
1<?php
13 protected function doLogChangeBatch( array $entries, $batchId ) {
14 return StatusValue::newGood();
15 }
16
21 protected function doGetCurrentPosition() {
22 return false;
23 }
24
30 protected function doGetPositionAtTime( $time ) {
31 return false;
32 }
33
40 protected function doGetChangeEntries( $start, $limit ) {
41 return [];
42 }
43
48 protected function doPurgeOldLogs() {
49 return StatusValue::newGood();
50 }
51}
Class for handling file operation journaling.
Simple version of FileJournal that does nothing.
doGetPositionAtTime( $time)
doLogChangeBatch(array $entries, $batchId)
doGetChangeEntries( $start, $limit)