Merge "Parse limitation warnings as 'text' and in user language"
[lhc/web/wiklou.git] / includes / rcfeed / RCFeedFormatter.php
1 <?php
2 interface RCFeedFormatter {
3 /**
4 * Formats the line for the live feed.
5 *
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.
11 */
12 public function getLine( array $feed, RecentChange $rc, $actionComment );
13 }