crodas\TextRank\Stopword::getStopwords PHP Method

getStopwords() protected method

protected getStopwords ( )
    protected function getStopwords()
    {
        static $stopwords;
        if (empty($stopwords)) {
            $stopwords = (require __DIR__ . '/Stopword/Stopword.php');
        }
        return $stopwords;
    }