Completed
Pull Request — master (#8)
by Helpful
02:43
created
code/providers/HunSpellProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,14 +26,14 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.