Merge "Reorder SpecialRecentChanges::webOutput"
[lhc/web/wiklou.git] / includes / rcfeed / RCFeedEngine.php
1 <?php
2 interface RCFeedEngine {
3 /**
4 * Sends some text to the specified live feed.
5 *
6 * @see RecentChange::cleanupForIRC
7 * @param array $feed The feed, as configured in an associative array.
8 * @param string $line The text to send.
9 * @return boolean success
10 */
11 public function send( array $feed, $line );
12 }