summaryrefslogtreecommitdiff
path: root/includes/rcfeed/RCFeedEngine.php
blob: f733bcb71d2e40f5717398d43d2f5589dd9d1e94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
interface RCFeedEngine {
	/**
	 * Sends some text to the specified live feed.
	 *
	 * @see RecentChange::cleanupForIRC
	 * @param array $feed The feed, as configured in an associative array.
	 * @param string $line The text to send.
	 * @return boolean success
	 */
	public function send( array $feed, $line );
}