Current File : /home/jvzmxxx/wiki/extensions/Wikibase/lib/includes/Reporting/MessageReporter.php
<?php

namespace Wikibase\Lib\Reporting;

/**
 * Interface for objects that can report messages.
 *
 * @since 0.4
 *
 * @license GPL-2.0+
 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
 */
interface MessageReporter {

	/**
	 * Report the provided message.
	 *
	 * @param string $message
	 */
	public function reportMessage( $message );

}