summaryrefslogtreecommitdiff
blob: 45cccb0d80b5ddd127953d3270a5147c3fbeed5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

namespace SMW\Reporter;

/**
 * Interface for objects that can report messages
 *
 * @ingroup SMW
 *
 * @license GNU GPL v2+
 * @since 1.9
 *
 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
 */
interface MessageReporter {

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

}