Files
liceo-ariosto/libraries/vendor/wamania/php-stemmer/src/Stemmer/Stemmer.php
2025-06-17 11:53:18 +02:00

20 lines
330 B
PHP

<?php
namespace Wamania\Snowball\Stemmer;
/**
* @author Luís Cobucci <lcobucci@gmail.com>
*/
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);
}