public function Process::setEnhanceWindowsCompatibility

Sets whether or not Windows compatibility is enabled.

Parameters

Boolean $enhance:

Return value

self The current Process instance

File

drupal/core/vendor/symfony/process/Symfony/Component/Process/Process.php, line 1023

Class

Process
Process is a thin wrapper around proc_* functions to ease start independent PHP processes.

Namespace

Symfony\Component\Process

Code

public function setEnhanceWindowsCompatibility($enhance) {
  $this->enhanceWindowsCompatibility = (bool) $enhance;
  return $this;
}