. // }}} namespace Plugin\StemWord; use App\Core\Event; use App\Core\Modules\Plugin; use Wamania\Snowball\StemmerFactory; class StemWord extends Plugin { public function onStemWord(string $language, string $word, ?string &$out) { $out = StemmerFactory::create($language)->stem($word); return Event::stop; } }