factory() 공개 정적인 메소드

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