[Process] fixed CS

This commit is contained in:
Fabien Potencier 2012-03-05 15:19:26 +01:00
parent 1c51e427ec
commit ba02981177

View File

@ -34,7 +34,7 @@ class Process
private $status; private $status;
private $stdout; private $stdout;
private $stderr; private $stderr;
private $enhanceWindowsCompatibility = true; private $enhanceWindowsCompatibility;
/** /**
* Exit codes translation table. * Exit codes translation table.
@ -116,6 +116,7 @@ class Process
} }
$this->stdin = $stdin; $this->stdin = $stdin;
$this->timeout = $timeout; $this->timeout = $timeout;
$this->enhanceWindowsCompatibility = true;
$this->options = array_replace(array('suppress_errors' => true, 'binary_pipes' => true), $options); $this->options = array_replace(array('suppress_errors' => true, 'binary_pipes' => true), $options);
} }
@ -451,5 +452,4 @@ class Process
{ {
$this->enhanceWindowsCompatibility = (Boolean) $enhance; $this->enhanceWindowsCompatibility = (Boolean) $enhance;
} }
} }