From: Eric Stadtherr Date: Mon, 30 Jul 2018 17:20:43 +0000 (-0600) Subject: address phpcs issue (strange it didn't appear in earlier runs) X-Git-Tag: v3.2.0~36^2 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/bfea79f1e4ad6cb71dbf5c58877a46588720fe7c address phpcs issue (strange it didn't appear in earlier runs) --- diff --git a/lib/cmd.php b/lib/cmd.php index 88189206..9ec290d1 100644 --- a/lib/cmd.php +++ b/lib/cmd.php @@ -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)) {