mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
13 lines
436 B
PHP
13 lines
436 B
PHP
<?php
|
|
interface RCFeedFormatter {
|
|
/**
|
|
* Formats the line for the live feed.
|
|
*
|
|
* @param array $feed The feed, as configured in an associative array.
|
|
* @param RecentChange $rc The RecentChange object showing what sort
|
|
* of event has taken place.
|
|
* @param string|null $actionComment
|
|
* @return string The text to send.
|
|
*/
|
|
public function getLine( array $feed, RecentChange $rc, $actionComment );
|
|
}
|