address phpcs issue (strange it didn't appear in earlier runs)

This commit is contained in:
Eric Stadtherr
2018-07-30 11:20:43 -06:00
parent 87d78e87d2
commit bfea79f1e4

View 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)) {