summaryrefslogtreecommitdiff
path: root/includes/rcfeed/UDPRCFeedEngine.php
blob: beeb73bd78419b20335d26d191efdd8ad25209bc (plain)
1
2
3
4
5
6
7
8
9
10
<?php
class UDPRCFeedEngine implements RCFeedEngine {
	/**
	 * Sends the notification to the specified host in a UDP packet.
	 * @see RCFeedEngine::send
	 */
	public function send( array $feed, $line ) {
		wfErrorLog( $line, $feed['uri'] );
	}
}