Merge "Add bot to createAndPromote.php groups"
[lhc/web/wiklou.git] / includes / rcfeed / UDPRCFeedEngine.php
1 <?php
2 class UDPRCFeedEngine implements RCFeedEngine {
3 /**
4 * Sends the notification to the specified host in a UDP packet.
5 * @see RCFeedEngine::send
6 */
7 public function send( array $feed, $line ) {
8 wfErrorLog( $line, $feed['uri'] );
9 }
10 }