Completed
Push — master ( 9401a4...2cc7a2 )
by mw
13:59
created

NullSynonymizer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A synonymize() 0 3 1
1
<?php
2
3
namespace Onoi\Tesa\Synonymizer;
4
5
use Cdb\Reader;
6
7
/**
8
 * @license GNU GPL v2+
9
 * @since 0.1
10
 *
11
 * @author mwjames
12
 */
13
class NullSynonymizer implements Synonymizer {
14
15
	/**
16
	 * @since 0.1
17
	 *
18
	 * @param string $word
19
	 *
20
	 * @return string
21
	 */
22
	public function synonymize( $word ) {
23
		return $word;
24
	}
25
26
}
27