Completed
Push — master ( f1a924...85530c )
by mw
07:12
created

ChangeNotificationFormatter   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 13
ccs 3
cts 3
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A processParam() 0 3 1
1
<?php
2
3
namespace SMW\Notifications\ChangeNotification;
4
5
use EchoEditFormatter;
6
use EchoEvent;
7
use EchoNotificationController;
8
use Message;
9
use User;
10
11
/**
12
 * @license GNU GPL v2+
13
 * @since 1.0
14
 *
15
 * @author mwjames
16
 */
17
class ChangeNotificationFormatter extends EchoEditFormatter {
18
19
	/**
20
	 * @param $event EchoEvent
21
	 * @param $param
22
	 * @param $message Message
23
	 * @param $user User
24
	 */
25 6
	protected function processParam( $event, $param, $message, $user ) {
26 6
		parent::processParam( $event, $param, $message, $user );
27 6
	}
28
29
}
30