]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/cmd.php
address phpcs issue (strange it didn't appear in earlier runs)
[nominatim.git] / lib / cmd.php
index 88189206ad6cc42c050e1dc094e255bd39a306c8..9ec290d1c4243f5158217ab2da6392c0595848bf 100644 (file)
@@ -200,9 +200,10 @@ function runSQLScript($sScript, $bfatal = true, $bVerbose = false, $bIgnoreError
 
 function runWithEnv($sCmd, $aEnv)
 {
-    $aFDs = array(0 => array('pipe', 'r'),
-                  1 => STDOUT,
-                  2 => STDERR);
+    $aFDs = array(
+             0 => array('pipe', 'r'),
+             1 => STDOUT,
+             2 => STDERR);
     $aPipes = null;
     $hProc = @proc_open($sCmd, $aFDs, $aPipes, null, $aEnv);
     if (!is_resource($hProc)) {