You are here

public function Process::setEnhanceWindowsCompatibility in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/process/Process.php \Symfony\Component\Process\Process::setEnhanceWindowsCompatibility()

Sets whether or not Windows compatibility is enabled.

Parameters

bool $enhance:

Return value

self The current Process instance

File

vendor/symfony/process/Process.php, line 1152

Class

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

Namespace

Symfony\Component\Process

Code

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