NullMessageReporter   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A reportMessage() 0 1 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