Merge "update.php: Add a full stop"
[mediawiki.git] / includes / rcfeed / RCFeedFormatter.php
blob6c9f804211fc18c95450da04478ed34012c8200c
1 <?php
2 interface RCFeedFormatter {
3 /**
4 * Formats the line for the live feed.
6 * @param array $feed The feed, as configured in an associative array.
7 * @param RecentChange $rc The RecentChange object showing what sort
8 * of event has taken place.
9 * @param string|null $actionComment
10 * @return string The text to send.
12 public function getLine( array $feed, RecentChange $rc, $actionComment );