public function Process::setWorkingDirectory in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/process/Process.php \Symfony\Component\Process\Process::setWorkingDirectory()
Sets the current working directory.
Parameters
string $cwd The new working directory:
Return value
self The current Process instance
File
- vendor/
symfony/ process/ Process.php, line 994
Class
- Process
- Process is a thin wrapper around proc_* functions to easily start independent PHP processes.
Namespace
Symfony\Component\ProcessCode
public function setWorkingDirectory($cwd) {
$this->cwd = $cwd;
return $this;
}