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

NullStopwordAnalyzer::isStopWord()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace Onoi\Tesa\StopwordAnalyzer;
4
5
/**
6
 * @license GNU GPL v2+
7
 * @since 0.1
8
 *
9
 * @author mwjames
10
 */
11
class NullStopwordAnalyzer implements StopwordAnalyzer {
12
13
	/**
14
	 * @since 0.1
15
	 *
16
	 * @param string $word
17
	 *
18
	 * @return boolean
19
	 */
20
	public function isStopWord( $word ) {
21
		return false;
22
	}
23
24
}
25