@@ -26,14 +26,14 @@ |
||
26 | 26 | protected function invoke($locale, $input, &$stdout, &$stderr) |
27 | 27 | { |
28 | 28 | // Prepare arguments |
29 | - $command = 'hunspell -d ' . escapeshellarg($locale); |
|
29 | + $command = 'hunspell -d '.escapeshellarg($locale); |
|
30 | 30 | $descriptorSpecs = array( |
31 | 31 | 0 => array("pipe", "r"), |
32 | 32 | 1 => array("pipe", "w"), |
33 | 33 | 2 => array("pipe", "w") |
34 | 34 | ); |
35 | 35 | $env = array( |
36 | - 'LANG' => $locale . '.utf-8' |
|
36 | + 'LANG' => $locale.'.utf-8' |
|
37 | 37 | ); |
38 | 38 | // Invoke command |
39 | 39 | $proc = proc_open($command, $descriptorSpecs, $pipes, null, $env); |