NullMessageReporter::reportMessage()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Onoi\MessageReporter;
4
5
/**
6
 * @since 1.0
7
 *
8
 * @license GNU GPL v2+
9
 * @author Jeroen De Dauw < [email protected] >
10
 */
11
class NullMessageReporter implements MessageReporter {
12
13
	/**
14
	 * @since 1.0
15
	 *
16
	 * {@inheritDoc}
17
	 */
18
	public function reportMessage( $message ) { }
19
20
}
21