Joseph DeVita
Results
1
issues of
Joseph DeVita
``` public function getSupportedLanguages() { if (null === $this->supportedLanguages) { $process = $this->createProcess('-D'); $process->run(); if (!$process->isSuccessful()) { throw new \RuntimeException(sprintf('hunspell: %s', $process->getErrorOutput())); } ``` Is throwing an exception when the...
feedback needed