MediaWiki master
RCFeedFormatter.php
Go to the documentation of this file.
1<?php
2
22namespace MediaWiki\RCFeed;
23
24use RecentChange;
25
33interface RCFeedFormatter {
44 public function getLine( array $feed, RecentChange $rc, $actionComment );
45}
47class_alias( RCFeedFormatter::class, 'RCFeedFormatter' );
Utility class for creating and reading rows in the recentchanges table.
Interface for RC feed formatters.
getLine(array $feed, RecentChange $rc, $actionComment)
Formats the line to be sent by an engine.