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/RCFeedEngine.php

12 lines
319 B
PHP

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