Lines Matching refs:cwd
57 private $cwd; variable in Symfony\\Component\\Process\\Process
137 …* @param string|null $cwd The working directory or null to use the working dir of the curre…
144 …public function __construct(array $command, ?string $cwd = null, ?array $env = null, $input = null… argument
151 $this->cwd = $cwd;
157 … if (null === $this->cwd && (\defined('ZEND_THREAD_SAFE') || '\\' === \DIRECTORY_SEPARATOR)) {
158 $this->cwd = getcwd();
184 …* @param string|null $cwd The working directory or null to use the working dir of the curre…
193 …public static function fromShellCommandline(string $command, ?string $cwd = null, ?array $env = nu… argument
195 $process = new static([], $cwd, $env, $input, $timeout);
349 if (!is_dir($this->cwd)) {
350 … throw new RuntimeException(sprintf('The provided cwd "%s" does not exist.', $this->cwd));
353 … @proc_open($commandline, $descriptors, $this->processPipes->pipes, $this->cwd, $envPairs, $this->…
1111 if (null === $this->cwd) {
1117 return $this->cwd;
1125 public function setWorkingDirectory(string $cwd) argument
1127 $this->cwd = $cwd;