name : Stemmer.php
<?php
namespace Wamania\Snowball\Stemmer;

/**
 * @author Luís Cobucci <[email protected]>
 */
interface Stemmer
{
    /**
     * Main function to get the STEM of a word
     *
     * @param string $word A valid UTF-8 word
     *
     * @return string
     *
     * @throws \Exception
     */
    public function stem($word);
}

© 2025 Cubjrnet7