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

ChangeNotificationFormatter::processParam()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
ccs 3
cts 3
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 4
crap 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