Microweber\Providers\URLify::remove_words PHP Метод

remove_words() публичный статический Метод

Accepts either single words or an array of words.
public static remove_words ( $words )
    public static function remove_words($words)
    {
        $words = is_array($words) ? $words : array($words);
        self::$remove_list = array_merge(self::$remove_list, $words);
    }