Joseph DeVita
Results
2
comments of
Joseph DeVita
Sadly it's proprietary :( I'm pointing it at the standard US dict (hunspell-en-us) that ships with Ubuntu LTS 14.04 (which is named as shown above).
```php public function spellcheck() { $tokens = $this->bodyParameters(); $corrections = []; $dict = [ 'en_US' ]; $speller = new Hunspell( '/usr/bin/hunspell' ); //$speller->setLanguages( $dict ); $source = new StringSource( implode(...