factory() public static method

public static factory ( string $language = 'English' ) : StopWords
$language string
return StopWords
Beispiel #1
0
 public function testPolishStopWords()
 {
     $stopWords = StopWords::factory('Polish');
     $this->assertTrue($stopWords->isStopWord('wam'));
     $this->assertFalse($stopWords->isStopWord('transhumanizm'));
 }