1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mediawiki_ynh.git synced 2024-09-03 19:46:05 +02:00
mediawiki_ynh/sources/mediawiki/includes/rcfeed/UDPRCFeedEngine.php

10 lines
246 B
PHP

<?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'] );
}
}